Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 02d0b8d

Browse files
committed
fix(watch): watch now ignores Mac OS meta data files
watch now ignores Mac OS meta data files closes #331
1 parent ce43565 commit 02d0b8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config/watch.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ module.exports = {
1313
paths: [
1414
'{{SRC}}/**/*.(ts|html|scss)'
1515
],
16-
options: { ignored: '{{SRC}}/**/*.spec.ts' },
16+
options: { ignored: ['{{SRC}}/**/*.spec.ts', '**/*.DS_Store'] },
1717
callback: watch.buildUpdate
1818
},
1919

2020
{
2121
paths: copyConfig.include.map(f => f.src),
22+
options: { ignored: '**/*.DS_Store' },
2223
callback: copy.copyUpdate
2324
}
2425

0 commit comments

Comments
 (0)