mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 02:22:40 +00:00
fix: default to "inherit"
for Deno.Command#spawn()
's stdout
& stderr
(#17025)
This commit is contained in:
parent
8972ebc9cc
commit
a2ba573e77
5 changed files with 41 additions and 6 deletions
6
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
6
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -1456,11 +1456,13 @@ declare namespace Deno {
|
|||
stdin?: "piped" | "inherit" | "null";
|
||||
/** How `stdout` of the spawned process should be handled.
|
||||
*
|
||||
* Defaults to `"piped"`. */
|
||||
* Defaults to `"piped"` for `output` & `outputSync`,
|
||||
* and `"inherit"` for `spawn`. */
|
||||
stdout?: "piped" | "inherit" | "null";
|
||||
/** How `stderr` of the spawned process should be handled.
|
||||
*
|
||||
* Defaults to "piped". */
|
||||
* Defaults to "piped" for `output` & `outputSync`,
|
||||
* and `"inherit"` for `spawn`. */
|
||||
stderr?: "piped" | "inherit" | "null";
|
||||
|
||||
/** Skips quoting and escaping of the arguments on windows. This option
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue