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

Commit

Permalink
fix(watch): watch now ignores Mac OS meta data files
Browse files Browse the repository at this point in the history
watch now ignores Mac OS meta data files

closes #331
  • Loading branch information
danbucholtz committed Nov 10, 2016
1 parent ce43565 commit 02d0b8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/watch.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ module.exports = {
paths: [
'{{SRC}}/**/*.(ts|html|scss)'
],
options: { ignored: '{{SRC}}/**/*.spec.ts' },
options: { ignored: ['{{SRC}}/**/*.spec.ts', '**/*.DS_Store'] },
callback: watch.buildUpdate
},

{
paths: copyConfig.include.map(f => f.src),
options: { ignored: '**/*.DS_Store' },
callback: copy.copyUpdate
}

Expand Down

0 comments on commit 02d0b8d

Please sign in to comment.