Skip to content

Releases: mysticatea/npm-run-all

v1.8.0

24 Apr 06:11
v1.8.0
d4f68e5
Compare
Choose a tag to compare

Features:

  • 0a600e5 - --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
  • 00f674a - --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

29 Mar 22:15
Compare
Choose a tag to compare

New Features:

  • 0a93527 --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

19 Mar 15:26
Compare
Choose a tag to compare

New Features:

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

v1.5.3

12 Mar 18:37
Compare
Choose a tag to compare

Bug Fixes:

v1.5.2

08 Mar 13:38
Compare
Choose a tag to compare

Bug Fixes:

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

28 Jan 04:19
Compare
Choose a tag to compare

Bug Fixes:

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

v1.5.0

16 Jan 16:50
Compare
Choose a tag to compare

New Feature:

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

v1.4.0

08 Dec 13:42
Compare
Choose a tag to compare
  • npm-run-all came to transfer overwritten config values to nested calls (#13).

v1.3.4

06 Dec 07:40
Compare
Choose a tag to compare
  • Fix broken on Node.js v0.10.x (#17)

v1.3.3

02 Dec 09:54
Compare
Choose a tag to compare
  • Upgrade Babel 6
  • Improve README.md
    • Add about the behavior of non-zero-exit.
    • Add about the arguments of tasks.