Skip to content

Commit 3feff4a

Browse files
authoredMay 27, 2022
fix: ignore minified files and transpiled fixtures in dep-check (#986)
Add ignores for files like `index.min.js` and any fixtures in the dist folder when checking dependencies.
1 parent d0db6ac commit 3feff4a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/config/user.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ const defaults = {
105105
'utils/**/*.js',
106106
'utils/**/*.cjs',
107107
'!./test/fixtures/**/*.js',
108-
'!./test/fixtures/**/*.cjs'
108+
'!./test/fixtures/**/*.cjs',
109+
'!./dist/test/fixtures/**/*.js',
110+
'!./dist/test/fixtures/**/*.cjs',
111+
'!**/*.min.js'
109112
],
110113
productionOnly: false,
111114
productionInput: [

0 commit comments

Comments
 (0)
Please sign in to comment.