From a4217b49532754225cf8a38f43b870f0a3d9c84c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 29 Nov 2016 19:11:14 +0000 Subject: [PATCH] Fix sass watch task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index c520904f..829c4749 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -67,7 +67,7 @@ gulp.task('sass:compile', function() { gulp.task('sass:watch', ['sass:compile'], function() { plugins.refresh.listen(); - gulp.watch(config.sass.sourceDir + config.sass.pattern, ['styles']); + gulp.watch(config.sass.sourceDir + config.sass.pattern, ['sass:compile']); }); gulp.task('js', ['js:compile', 'js:watch']);