Fix gulp watch to call sass instead of css

This commit is contained in:
Jaron Kennel 2015-04-13 08:42:30 -04:00
parent a40ab40695
commit 046ce954fd

View File

@ -125,7 +125,7 @@ gulp.task('connect', ['build'], function () {
gulp.task('watch', function () { gulp.task('watch', function () {
gulp.watch(['src/js/**/*'], ['js']); gulp.watch(['src/js/**/*'], ['js']);
gulp.watch(['src/css/**/*'], ['css']); gulp.watch(['src/css/**/*'], ['sass']);
}); });
gulp.task('serve', ['connect', 'watch']); gulp.task('serve', ['connect', 'watch']);