npm-parallel
v2.0.1
Published
npm tasks that run other npm tasks in parallel!
Downloads
865
Readme
npm-parallel
Run npm tasks in parallel, even on Windows!
Solves the biggest problem of task automation with npm run
getting started
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 ?
{
"watch": "parallel watchify tsc-watch",
"watchify": "watchify lib/main.js -o bundle.js -d",
"tsc-watch": "tsc --watch"
}
todo
Actually test this on Windows.
license
MIT