You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,13 +101,13 @@ Check out documentation and other usage examples in the [`docs` directory](./doc
101
101
- `defaultInputTarget`: the default input target when reading from `inputStream`.
102
102
Default: `0`.
103
103
- `handleInput`: when `true`, reads input from `process.stdin`.
104
-
- `inputStream`: a [`Readable` stream](https://nodejs.org/dist/latest-v10.x/docs/api/stream.html#stream_readable_streams)
104
+
- `inputStream`: a [`Readable` stream](https://nodejs.org/docs/latest/api/stream.html#readable-streams)
105
105
to read the input from. Should only be used in the rare instance you would like to stream anything other than `process.stdin`. Overrides `handleInput`.
106
106
- `pauseInputStreamOnFinish`: by default, pauses the input stream (`process.stdin` when `handleInput` is enabled, or `inputStream` if provided) when all of the processes have finished. If you need to read from the input stream after `concurrently` has finished, set this to `false`. ([#252](https://github.com/kimmobrunfeldt/concurrently/issues/252)).
107
107
- `killOthersOn`: once the first command exits with one of these statuses, kill other commands.
108
108
Can be an array containing the strings `success` (status code zero) and/or `failure` (non-zero exit status).
109
109
- `maxProcesses`: how many processes should run at once.
110
-
- `outputStream`: a [`Writable` stream](https://nodejs.org/dist/latest-v10.x/docs/api/stream.html#stream_writable_streams)
110
+
- `outputStream`: a [`Writable` stream](https://nodejs.org/docs/latest/api/stream.html#writable-streams)
111
111
to write logs to. Default: `process.stdout`.
112
112
- `prefix`: the prefix type to use when logging processes output.
113
113
Possible values: `index`, `pid`, `time`, `command`, `name`, `none`, or a template (eg `[{time} process: {pid}]`).
@@ -223,16 +223,16 @@ It contains the following properties:
223
223
224
224
## FAQ
225
225
226
-
- Process exited with code _null_?
226
+
- Process exited with code `null`?
227
227
228
-
From [Node child_process documentation](http://nodejs.org/api/child_process.html#child_process_event_exit), `exit` event:
228
+
From [Node child_process documentation](https://nodejs.org/docs/latest/api/child_process.html#event-exit), `exit` event:
229
229
230
230
> This event is emitted after the child process ends. If the process
231
231
> terminated normally, code is the final exit code of the process,
232
232
> otherwise null. If the process terminated due to receipt of a signal,
233
233
> signal is the string name of the signal, otherwise null.
234
234
235
-
So _null_ means the process didn't terminate normally. This will make **concurrently**
235
+
So `null` means the process didn't terminate normally. This will make **concurrently**
236
236
to return non-zero exit code too.
237
237
238
238
- Does this work with the npm-replacements [yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/), or [Bun](https://bun.sh/)?
0 commit comments