Skip to content

Commit 7bc29e4

Browse files
author
Kent C. Dodds
committed
fix(babel): fix ignore glob
1 parent 256eed4 commit 7bc29e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/build/babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const config = useBuiltinConfig
1818

1919
const ignore = args.includes('--ignore')
2020
? []
21-
: ['--ignore', '__tests__,__mocks__']
21+
: ['--ignore', '**/__tests__/**,**/__mocks__/**']
2222

2323
const copyFiles = args.includes('--no-copy-files') ? [] : ['--copy-files']
2424

0 commit comments

Comments
 (0)