fix watch

This commit is contained in:
syuilo 2021-03-13 00:40:35 +09:00
parent 7ea207df5d
commit e9ba81149d
2 changed files with 10 additions and 10 deletions

View file

@ -92,7 +92,9 @@ gulp.task('build', gulp.parallel(
gulp.task('default', gulp.task('build'));
gulp.watch([
'./src/**/*',
'!./src/client/**/*'
], gulp.task('build'));
gulp.task('watch', () => {
gulp.watch([
'./src/**/*',
'!./src/client/**/*'
], { ignoreInitial: false }, gulp.task('build'));
});

View file

@ -11,18 +11,16 @@
"private": true,
"scripts": {
"start": "node ./index.js",
"start-product": "cross-env NODE_ENV=production node ./index.js",
"init": "npm run migrate",
"ormconfig": "node ./built/ormconfig.js",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrateandstart": "npm run migrate && npm run start",
"build": "webpack && gulp build",
"build-product": "cross-env NODE_ENV=production webpack && gulp build",
"webpack": "webpack",
"build": "npm run build-webpack && npm run build-gulp",
"build-webpack": "webpack",
"build-gulp": "gulp build",
"watch": "concurrently \"npm:watch-*\"",
"watch-webpack": "webpack --watch",
"watch-gulp": "gulp --watch",
"gulp": "gulp build",
"watch-gulp": "gulp watch",
"clean": "gulp clean",
"cleanall": "gulp cleanall",
"lint": "tslint 'src/**/*.ts'",