1.0.0 • Published 8 months ago

run-s-p v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

run-s-p

Run commands in sequence or in parallel.

Commands

  • run -s ... Runs commands in sequential order.
  • run -p ... Runs commands in parallel order.

How to use

package.json

{
  "scripts": {
    "test": "run -s \"echo hello\" \"echo goodbye\"",
    "start": "run -p server watch",
    "server": "node server.js",
    "watch": "nodemon . --exec npm run server",
  }
}
1.0.0

8 months ago