Skip to content

Commit

Permalink
fix chokidar ignored regex (#2479)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahtariq1171 authored and devongovett committed Dec 30, 2018
1 parent 46f6fe7 commit 8322e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/watcher/src/Watcher.js
Expand Up @@ -19,7 +19,7 @@ class Watcher extends EventEmitter {
process.platform === 'darwin' && process.env.NODE_ENV !== 'test',
ignoreInitial: true,
ignorePermissionErrors: true,
ignored: /\.cache|\.git/
ignored: /(^|[/\\])\.(git|cache)/
}
) {
super();
Expand Down

0 comments on commit 8322e47

Please sign in to comment.