From a65820b4d52fb5580de672736a8c82f6e5f54975 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Sun, 21 Dec 2014 16:57:59 -0500 Subject: [PATCH] Removing watch for scss files. The task is now handled as part of the markup re-build --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 7690943..e919380 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,7 +12,6 @@ function errorHandler() { gulp.task('default', ['server'], function() { gulp.watch(config.globs.other, ['static']); gulp.watch([config.globs.html, config.templateFile, config.globs.sass], ['markup']); - gulp.watch(config.globs.sass, ['compass']); gulp.watch(config.globs.js, ['browserify']); });