File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,13 +153,13 @@ General
153153 - "last" for the last command to exit;
154154 - "all" for all commands;
155155 - "command-{name}"/"command-{index}" for the
156- command with that name or index;
156+ commands with that name or index;
157157 - "!command-{name}"/"!command-{index}" for all
158- commands but the one with that name or index.
158+ commands but the ones with that name or index.
159159 [default: "all"]
160160 -r, --raw Output only raw output of processes, disables
161161 prettifying and concurrently coloring. [boolean]
162- --no-color Disables colors from logging. [boolean]
162+ --no-color Disables colors from logging [boolean]
163163 --hide Comma-separated list of processes to hide the
164164 output.
165165 The processes can be identified by their name or
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import { CloseEvent, Command } from './command';
88 * - `first`: only the first specified command;
99 * - `last`: only the last specified command;
1010 * - `all`: all commands.
11- * - `command-{name|index}`: only the command with the specified name or index.
12- * - `!command-{name|index}`: all commands but the one with the specified name or index.
11+ * - `command-{name|index}`: only the commands with the specified names or index.
12+ * - `!command-{name|index}`: all commands but the ones with the specified names or index.
1313 */
1414export type SuccessCondition = 'first' | 'last' | 'all' | `command-${string | number } ` | `!command-${string | number } `;
1515
You can’t perform that action at this time.
0 commit comments