/npm-parallel

Run npm tasks in parallel (on Windows too)

Primary LanguageJavaScript

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