Commit b926705b by William Committed by Michael Mifsud

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.
parent a2d2a636
......@@ -263,7 +263,7 @@ function watch(options, emitter) {
});
gaze.on('deleted', function(file) {
handler(watcher.deleted(file));
handler(watcher.removed(file));
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment