所以我想在两个不同的用例中同时运行两个脚本。
情况1:
"scripts": {
"start-watch": "nodemon run-babel index.js",
"wp-server": "webpack-dev-server",
}
假设我们在package.json中有两个脚本,想要并行运行它们
情况2:
var executed = false;
// loop 1
func();
// loop 2
func();
function func(){
if (executed) return;
executed = true;
alert(1);
}
现在我想同时执行这两个功能。
所以有人可以解释。