npm run watchでサーバーサイドもwatchするように

This commit is contained in:
syuilo 2021-03-12 23:37:06 +09:00
parent b8d9dd15ac
commit 3e2d2e5f6b
3 changed files with 69 additions and 4 deletions

View file

@ -91,3 +91,8 @@ gulp.task('build', gulp.parallel(
));
gulp.task('default', gulp.task('build'));
gulp.watch([
'./src/**/*',
'!./src/client/**/*'
], gulp.task('build'));