Skip to content

Commit

Permalink
Fix errors with install and watching for changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Jun 25, 2015
1 parent 3256f72 commit c787ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/gulp/templates/gulpfile.js
Expand Up @@ -259,7 +259,7 @@ function serve() {
});

// Watch various files for changes and do the needful
gulp.watch(config.watch.content, [jekyllDev, reload]);
gulp.watch(config.watch.content, gulp.series(jekyllDev, reload));
gulp.watch(config.watch.javascript, javascript);
gulp.watch(config.watch.scss, styles);
gulp.watch(config.watch.images, reload);
Expand Down

0 comments on commit c787ca5

Please sign in to comment.