Skip to content

Commit

Permalink
Correct asset build when watching
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Nov 11, 2018
1 parent bdf6d06 commit 9c5f70a
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 @@ -11,7 +11,7 @@ gulp.task('assets', () => {
.pipe(gulp.dest('public'));
});
gulp.task('assets:watch', () => {
return gulp.watch('app/assets/**/*', gulp.series('assets:core', 'sw'));
return gulp.watch('app/assets/**/*', gulp.series('assets', 'sw'));
});

gulp.task('sass', () => {
Expand Down

0 comments on commit 9c5f70a

Please sign in to comment.