Skip to content

Commit

Permalink
feat(bin): improves parallel and series help prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamel committed May 1, 2019
1 parent 33e0e83 commit dc38d92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/bin/main/parallel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export default async function parallel(argv: string[]): Promise<void> {
$ kpo :parallel [options] [commands] -- [streamArgs]
Runs commands in parallel
r
Options:
-n, --names Comma separated names
-c, --colors Comma separated colors
--force Don't kill all other processes if any fails
-h, --help Show help
-n, --names <values> Comma separated names
-c, --colors <values> Comma separated colors
--force Don't kill all other processes if any fails
-h, --help Show help
Examples:
$ kpo :parallel -n foo,baz -c blue,magenta "foo --bar" "baz --foobar"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/main/series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function series(argv: string[]): Promise<void> {
Runs commands in series
Options:
--force Continue serial execution even if some fail
--force Continue serial execution even if a process fails
-h, --help Show help
Examples:
Expand Down

0 comments on commit dc38d92

Please sign in to comment.