Releases: mysticatea/npm-run-all
Releases · mysticatea/npm-run-all
v1.8.0
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.
- 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.
v1.7.0
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
New Features:
- 5f5d26f
--serial
option has been added as a synonym of--sequential
option (#30)
Thank you @sarbbottam!
v1.5.3
v1.5.2
Bug Fixes:
- 413e45d 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
v1.5.0
v1.4.0
v1.3.4
v1.3.3
- Upgrade Babel 6
- Improve README.md
- Add about the behavior of non-zero-exit.
- Add about the arguments of tasks.