Npm Run All Versions Save

A CLI tool to run multiple npm-scripts in parallel or sequential.

v1.8.0

8 years ago

Features:

  • 0a600e59d651283bcdc888b75e377488b47e427e - --print-name option has been added (#35).
    When this option was specified, npm-run-all prints task names before running the tasks.
    This option is useful with using --silent option or similar npm configulation. print-name
  • 00f674a6a516aa3ecbbc106a94ba9a3108385f1f - --print-label option has been added (#23).
    When this option was specified, npm-run-all prints task names as prefix for each line of output.
    This option is useful with using --parallel option. But there is a known limitation, some tools get stopping coloring when this option was specified.
    print-label

v1.7.0

8 years ago

New Features:

  • 0a93527dc9838dbb00f944c3f9dba93c8b186233 --continue-on-error option was added (fixes #34). When this option was specified, npm-run-all continues subsequence on error.

    npm-run-all --sequential --continue-on-error foo bar    # shorthand: npm-run-all -S foo bar
    npm-run-all --parallel --continue-on-error foo bar      # shorthand: npm-run-all -P foo bar
    

v1.6.0

8 years ago

New Features:

  • 5f5d26faa1dfde744ec1a11f1ed1d2fcc6b14583 --serial option has been added as a synonym of --sequential option (#30)
    Thank you @sarbbottam!

v1.5.3

8 years ago

Bug Fixes:

  • c4a86daec725abfbe1e56571c244b629aff16a4a Added a workaround for Git Bash for Windows (#24, #25)

v1.5.2

8 years ago

Bug Fixes:

  • 413e45d087c0ca3a27342b77c3e636b253e8324b Improved Windows Supports (#26)
    Previously, npm-run-all has been failing if npm was installed to a path which includes space(s). Now this problem has fixed. Thanks @BarryThePenguin and cross-spawn-async!

Known Issues:

  • On Git Bash for Windows, npm-run-all might hang up. (#24)
  • A problem around parallel and nodemon has been reported. (#25)

I'm investigating those issues.

v1.5.1

8 years ago

Bug Fixes:

  • 36316eadb020e99c1ce7a86d8b5806f7efb8390c If the given tasks were not found, npm-run-all came to report an error (#19).

v1.5.0

8 years ago

New Feature:

  • 87aedbf187f2e554e9d6654c9475f4c93cd0ba91 --silent option was added. If this option was given, the log level of npm becomes silent (#18).

v1.4.0

8 years ago
  • npm-run-all came to transfer overwritten config values to nested calls (#13).

v1.3.4

8 years ago
  • Fix broken on Node.js v0.10.x (#17)

v1.3.3

8 years ago
  • Upgrade Babel 6
  • Improve README.md
    • Add about the behavior of non-zero-exit.
    • Add about the arguments of tasks.