From 046ce954fde98d9cf393156af2b01871cb0c788e Mon Sep 17 00:00:00 2001 From: Jaron Kennel Date: Mon, 13 Apr 2015 08:42:30 -0400 Subject: [PATCH] Fix gulp watch to call sass instead of css --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index cb16e3a..3295f11 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -125,7 +125,7 @@ gulp.task('connect', ['build'], function () { gulp.task('watch', function () { gulp.watch(['src/js/**/*'], ['js']); - gulp.watch(['src/css/**/*'], ['css']); + gulp.watch(['src/css/**/*'], ['sass']); }); gulp.task('serve', ['connect', 'watch']);