📌  相关文章
📜  如何执行更多命令脚本 package.json - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:20.136000             🧑  作者: Mango

代码示例1
* If you are using an UNIX-like environment, just use & as the separator:

"dev": "npm run start-watch & npm run wp-server"

* From windows cmd you can use start:

"dev": "start npm run start-watch && start npm run wp-server"
Every command launched this way starts in its own window.