Skip to content

Commit

Permalink
fix: properly ignore __tests__ folder
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Apr 28, 2019
1 parent df2e92c commit c0cb4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default async function compile({
cwd: source,
absolute: true,
nodir: true,
ignore: '**/__tests__/**,**/__fixtures__/**',
ignore: '**/{__tests__,__fixtures__}/**',
});

report.info(
Expand Down

0 comments on commit c0cb4d2

Please sign in to comment.