在同一个控制台上使用 ng build watch & gulp watch
Use ng build watch & gulp watch on the same console
我想在同一台主机上使用 ng build --watch
和 gulp watch:ng
这是我的任务代码
gulp.task('watch:ng', function () {
gulp.watch('ng/dist/ng/*', gulp.series('copy-ng'));
});
我想在 angular 重建项目时 copy/merge 将脚本移到另一个位置
我找到了使用 npm-run-all
的解决方案
npm install npm-run-all --save-dev
"scripts": {
"build:watch": "ng build --deleteOutputPath=false --watch",
"gulp:watch": "gulp watch:ng",
"rebuild": "run-p build:watch gulp:watch",
}
npm run rebuild
我想在同一台主机上使用 ng build --watch
和 gulp watch:ng
这是我的任务代码
gulp.task('watch:ng', function () {
gulp.watch('ng/dist/ng/*', gulp.series('copy-ng'));
});
我想在 angular 重建项目时 copy/merge 将脚本移到另一个位置
我找到了使用 npm-run-all
npm install npm-run-all --save-dev
"scripts": {
"build:watch": "ng build --deleteOutputPath=false --watch",
"gulp:watch": "gulp watch:ng",
"rebuild": "run-p build:watch gulp:watch",
}
npm run rebuild