Skip to content

Commit

Permalink
Use watcher removed function on deleted
Browse files Browse the repository at this point in the history
Updated the node-sass cli script to use the watcher removed function instead of the 'deleted' function which is non-existent.
  • Loading branch information
William authored and xzyfer committed Mar 10, 2018
1 parent a2d2a63 commit b926705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/node-sass
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ function watch(options, emitter) {
});

gaze.on('deleted', function(file) {
handler(watcher.deleted(file));
handler(watcher.removed(file));
});
}

Expand Down

0 comments on commit b926705

Please # to comment.