Skip to content

Commit e95ea6f

Browse files
authoredJan 8, 2018
fix: ignorePermissionErrors in chokidar
Make any permission errors silent, since it the most likely case we don't need them at all. Fixes: #1213
1 parent c121187 commit e95ea6f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎lib/monitor/watch.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ function watch() {
4949
}
5050

5151
var watchOptions = {
52+
ignorePermissionErrors: true,
5253
cwd: process.cwd(), // use cwd for relative path ignore
5354
ignored: ignored,
5455
persistent: true,

0 commit comments

Comments
 (0)
Please sign in to comment.