Skip to content

Commit

Permalink
fix chokidar ignored regex
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahtariq1171 committed Dec 28, 2018
1 parent 46f6fe7 commit 3f71d38
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 3f71d38

Please sign in to comment.