Update npm-run-all to version 2.0.0 🚀 #24
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello 👋
🚀🚀🚀
npm-run-all just published its new version 2.0.0, which is not covered by your current version range.
If this pull request passes your tests you can publish your software with the latest version of npm-run-all – otherwise use this branch to work on adaptions and fixes.
Happy fixing and merging 🌴
GitHub Release
Features:
npm-run-all
to cover most use cases.npm-run-all -s
.e.g.
run-s clean lint build:*
npm-run-all -p
.e.g.
run-p "build:* -- --watch"
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
.The new version differs by 33 commits .
3020572
2.0.0
30c2949
Chore: remove babel-runtime.
62d868b
Docs: switch to jsdoc from esdoc
9d050ab
Docs: tweaks and add a known limitation of
--print-label``a0c727f
Merge branch 'shorthand-commands'
f8bbaf3
Fix: trivial
969cd42
Docs: update documents
db62298
Fix: update tests for Node 0.x
031001b
Fix: fix lint targets.
4496065
Update: add tests for shorthand commands.
2f26fa5
Chore: Stop a use of ES6 modules. And upgrade eslint.
df49af8
Build: Add Node 6 to Travis CI (#39)
40554ef
Add
run-sand
run-pcommands
d4f68e5
1.8.0
0a600e5
New:
--print-nameoption (fixes #35)
There are 33 commits in total. See the full diff.
This pull request was created by greenkeeper.io.
Tired of seeing this sponsor message? Upgrade to the supporter plan! You'll also get your pull requests faster ⚡It keeps your software up to date, all the time.