npm tasks that run other npm tasks in parallel!
npm install npm-parallelRun npm tasks in parallel, even on Windows!
Solves the biggest problem of [task automation with npm run][1]
Install npm-parallel in your project as a dev dependency
npm install --save-dev npm-parallel
Now you can use parallel in your project's scripts!
Example:
Want to run both watchify and typescript --watch ?
``json``
{
"watch": "parallel watchify tsc-watch",
"watchify": "watchify lib/main.js -o bundle.js -d",
"tsc-watch": "tsc --watch"
}
Actually test this on Windows.
MIT
[1]: http://substack.net/task_automation_with_npm_run