From 3e2d2e5f6be371556164b89b820cb3ae5c5cdcea Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 12 Mar 2021 23:37:06 +0900 Subject: npm run watchでサーバーサイドもwatchするように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gulpfile.ts') 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')); -- cgit v1.2.3-freya