summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-03-12 23:37:06 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-03-12 23:37:06 +0900
commit3e2d2e5f6be371556164b89b820cb3ae5c5cdcea (patch)
tree4e8340e72349c6e2e8b4ce671f6128a607cfa49f /gulpfile.ts
parentUpdate dependencies :rocket: (diff)
downloadsharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.tar.gz
sharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.tar.bz2
sharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.zip
npm run watchでサーバーサイドもwatchするように
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index 018134ca26..b899d62f99 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -91,3 +91,8 @@ gulp.task('build', gulp.parallel(
));
gulp.task('default', gulp.task('build'));
+
+gulp.watch([
+ './src/**/*',
+ '!./src/client/**/*'
+], gulp.task('build'));