Features:
- New shorthand commands: run-s and run-p. Those are more simple commands than
npm-run-all
to cover most use cases.
Breaking Changes:
--continue-on-error
option has been changed the behavior. On 1.x, if the option was specified,npm-run-all
command exited with0
. But on 2.0.0, even if the option was specified,npm-run-all
command will exit with a non-zero code if a npm-script exited with a non-zero code.--print-label
,--print-name
, and--continue-on-error
options have been changed the behavior. On 1.x, the effect of those options was applied to only one script group. But on 2.0.0, the effect of those options will be applied to whole a command.
For example,npm-run-all -s aaa bbb -p ccc ddd --print-label
, in this case the command has 2 script group,aaa bbb
andccc ddd
. Then, on 1.x,--print-label
will effect to onlyccc ddd
. On the other hand, on 2.0.0,--print-label
will effect to all ofaaa
,bbb
,ccc
, andddd
.-S
and-P
shorthand options have been removed. Please use originating options:-c
and-c -p
.