diff --git a/bin/node-sass b/bin/node-sass index 066a5b8d9..4e530b578 100755 --- a/bin/node-sass +++ b/bin/node-sass @@ -268,7 +268,10 @@ function watch(options, emitter) { // Add children to watcher graph.visitDescendents(file, function(child) { - gaze.add(child); + if (watch.indexOf(child) == -1) { + watch.push(child); + gaze.add(child); + } }); files.forEach(function(file) { if (path.basename(file)[0] !== '_') {