2 つの npm スクリプトを並行して実行したいのですが、この VS Code は最初のタスクしか実行せず、そこで停止します。どうすれば解決できますか?私tasks.json
は以下の通りです:
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"suppressTaskName": true,
"args": [
"run"
],
"tasks": [
{
"args": [
"gulp"
],
"taskName": "gulp",
"isBuildCommand": true
},
{
"args": [
"babel"
],
"taskName": "babel",
"isBuildCommand": true
}
]
}