Skip to content

Commit

Permalink
chore: adjust ignorePatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
byyuurin committed Feb 28, 2023
1 parent 95425f4 commit 44e5dae
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions packages/basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,36 @@ module.exports = {
},

ignorePatterns: [
'*.min.*',
'*.d.ts',
'dist',
'public',
'temp',
'output',
'CHANGELOG.md',
// nonsupport
'*.css',
'*.png',
'*.ico',
'*.toml',
'*.patch',
'*.txt',
'*.crt',
'*.key',
'Dockerfile',
'LICENSE*',

// package manager
// file
'*.min.*',
'*.d.ts',
'package-lock.json',
'pnpm-lock.yaml',
'yarn.lock',
'CHANGELOG.md',

// test framework
// folder
'dist',
'public',
'temp',
'output',
'out',
'coverage',
'__snapshots__',

// software
// force include
'!.github',
'!.vitepress',
'!.vscode',
Expand Down

0 comments on commit 44e5dae

Please sign in to comment.