我使用NPM脚本在我的Node.js应用程序任务自动化。 例如,在我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
。 有没有办法来解决这个? 也许有些bash的版本的Windows? 谢谢!