From cb6751d8923299aeac24cb4aec77ae9e77624357 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 2 Dec 2016 20:15:07 +0000 Subject: [PATCH] Fix task name --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6f165ad42..1c607af57 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -87,6 +87,6 @@ gulp.task('default', ['build']); gulp.task('watch', ['build'], function() { plugins.refresh.listen(); - gulp.watch(config.sass.sourceDir + config.sass.pattern, ['sass:compile']); + gulp.watch(config.sass.sourceDir + config.sass.pattern, ['styles']); gulp.watch(config.js.sourceDir + config.js.pattern, ['scripts']); });