diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-12 23:37:06 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-12 23:37:06 +0900 |
| commit | 3e2d2e5f6be371556164b89b820cb3ae5c5cdcea (patch) | |
| tree | 4e8340e72349c6e2e8b4ce671f6128a607cfa49f /gulpfile.ts | |
| parent | Update dependencies :rocket: (diff) | |
| download | sharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.tar.gz sharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.tar.bz2 sharkey-3e2d2e5f6be371556164b89b820cb3ae5c5cdcea.zip | |
npm run watchでサーバーサイドもwatchするように
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 5 |
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')); |