我在我的node.js应用中使用npm脚本进行任务自动化。例如,在我的package.json
:
"scripts": {
"nodemon": "nodemon -w ./src bin/runServer -e js,jsx,json",
"start-wds": "node bin/runWebpackDevServer",
"start-dev": "npm run start-wds & npm run nodemon",
...
}
在Mac OS X上,命令npm run start-dev
完美运行 - 它并行启动2个独立的进程。 但在Windows上,它只会启动第一个npm run start-wds
。有没有办法解决这个问题?也许是Windows的一些bash版本?谢谢!