From 9c5f70a3d1648c502f5a45f3c139657a288d911c Mon Sep 17 00:00:00 2001 From: Caleb Evans Date: Sat, 10 Nov 2018 19:38:08 -0800 Subject: [PATCH] Correct asset build when watching --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0b5b9a9..dea07a9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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', () => {