Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add succeeded to --race description to clarify what --race does #228

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/npm-run-all/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Options:
e.g. 'npm-run-all -p foo bar' is similar to
'npm run foo & npm run bar'.
-r, --race - - - - - - - Set the flag to kill all tasks when a task
finished with zero. This option is valid only
finished with zero (succeeded). This option is valid only
with 'parallel' option.
-s, --sequential <tasks> - Run a group of tasks sequentially.
--serial <tasks> e.g. 'npm-run-all -s foo bar' is similar to
Expand Down
2 changes: 1 addition & 1 deletion bin/run-p/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Options:
-n, --print-name - - - - Set the flag to print the task name before
running each task.
-r, --race - - - - - - - Set the flag to kill all tasks when a task
finished with zero.
finished with zero (succeeded).
-s, --silent - - - - - - Set 'silent' to the log level of npm.

Shorthand aliases can be combined.
Expand Down
2 changes: 1 addition & 1 deletion docs/npm-run-all.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Options:
e.g. 'npm-run-all -p foo bar' is similar to
'npm run foo & npm run bar'.
-r, --race - - - - - - - Set the flag to kill all tasks when a task
finished with zero. This option is valid only
finished with zero (succeeded). This option is valid only
with 'parallel' option.
-s, --sequential <tasks> - Run a group of tasks sequentially.
--serial <tasks> e.g. 'npm-run-all -s foo bar' is similar to
Expand Down
2 changes: 1 addition & 1 deletion docs/run-p.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Options:
-n, --print-name - - - - Set the flag to print the task name before
running each task.
-r, --race - - - - - - - Set the flag to kill all tasks when a task
finished with zero.
finished with zero (succeeded).
-s, --silent - - - - - - Set 'silent' to the log level of npm.

Shorthand aliases can be combined.
Expand Down