Skip to content

Commit

Permalink
Fix gulp watch to call sass instead of css
Browse files Browse the repository at this point in the history
  • Loading branch information
jaronkk committed Apr 13, 2015
1 parent a40ab40 commit 046ce95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down

0 comments on commit 046ce95

Please sign in to comment.