I am starting multiple npm tasks in parallel (using &
, not just in sequence &&
). Thus in package.json:
\"s
Killing detached processes (that's the word…) will be a pain. One will have to look at pids, and more stuff coming your way. Not to mention cross-platform issues, if meant to work under windows...
Easier and working:
npm install concurrently --save
and thus
"start": "concurrently \"npm run watch-blog\" \"npm run watch-data\" \"npm run serve\"",
Tested (under Ubuntu 16.04, npm 5.6).