Skip to content

Commit c0cb4d2

Browse files
committed
fix: properly ignore __tests__ folder
1 parent df2e92c commit c0cb4d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default async function compile({
2222
cwd: source,
2323
absolute: true,
2424
nodir: true,
25-
ignore: '**/__tests__/**,**/__fixtures__/**',
25+
ignore: '**/{__tests__,__fixtures__}/**',
2626
});
2727

2828
report.info(

0 commit comments

Comments
 (0)