Removing watch for scss files.

The task is now handled as part of the markup re-build
This commit is contained in:
Jeff Avallone 2014-12-21 16:57:59 -05:00
parent 445cec7c7f
commit a65820b4d5

View File

@ -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']);
});