2.0.1 • Published 9 years ago

npm-parallel v2.0.1

Weekly downloads
266
License
ISC
Repository
-
Last release
9 years ago

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