Skip to content

Commit

Permalink
Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckyMaler committed Apr 11, 2016
1 parent 0759c71 commit 2b428b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -80,7 +80,7 @@ gulp.task('clean', function() {
});

gulp.task('default', ['html', 'styles', 'scripts', 'images', 'icons'], function() {
gulp.watch('*.html', ['html']).on('change', browserSync.reload)
gulp.watch('*.html', ['html']).on('change', browserSync.reload);
gulp.watch(['assets/css/**/*.sass',
'assets/css/**/*.scss'],['styles']);
gulp.watch('assets/js/*.js', ['scripts']);
Expand Down

0 comments on commit 2b428b0

Please sign in to comment.