From b926705b3b6b96b7d0350da0f7199c0a5f5bfa4e Mon Sep 17 00:00:00 2001 From: William Date: Fri, 8 Dec 2017 09:22:31 +0100 Subject: [PATCH] Use watcher removed function on deleted Updated the node-sass cli script to use the watcher removed function instead of the 'deleted' function which is non-existent. --- bin/node-sass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/node-sass b/bin/node-sass index d80efb0fd..62abdb229 100755 --- a/bin/node-sass +++ b/bin/node-sass @@ -263,7 +263,7 @@ function watch(options, emitter) { }); gaze.on('deleted', function(file) { - handler(watcher.deleted(file)); + handler(watcher.removed(file)); }); }