From 235b289bee80ef2a107a0c319bc9281756350de1 Mon Sep 17 00:00:00 2001 From: Kyle Robinson Young Date: Mon, 17 Oct 2016 16:58:43 -0700 Subject: [PATCH] Ignore file watch errors. Fixes GH-225 (#893) --- app/config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config.js b/app/config.js index 1558aec9..5f79ea00 100644 --- a/app/config.js +++ b/app/config.js @@ -40,6 +40,9 @@ function watch() { }); } }); + this.on('error', () => { + // Ignore file watching errors + }); }); }