Ignore file watch errors. Fixes GH-225 (#893)

This commit is contained in:
Kyle Robinson Young 2016-10-17 16:58:43 -07:00 committed by Guillermo Rauch
parent 83b47a553d
commit 235b289bee

View file

@ -40,6 +40,9 @@ function watch() {
});
}
});
this.on('error', () => {
// Ignore file watching errors
});
});
}