Skip to content

Commit

Permalink
fix: ignore minified files and transpiled fixtures in dep-check (#986)
Browse files Browse the repository at this point in the history
Add ignores for files like `index.min.js` and any fixtures in the dist folder when checking dependencies.
  • Loading branch information
achingbrain committed May 27, 2022
1 parent d0db6ac commit 3feff4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/config/user.js
Expand Up @@ -105,7 +105,10 @@ const defaults = {
'utils/**/*.js',
'utils/**/*.cjs',
'!./test/fixtures/**/*.js',
'!./test/fixtures/**/*.cjs'
'!./test/fixtures/**/*.cjs',
'!./dist/test/fixtures/**/*.js',
'!./dist/test/fixtures/**/*.cjs',
'!**/*.min.js'
],
productionOnly: false,
productionInput: [
Expand Down

0 comments on commit 3feff4a

Please sign in to comment.