mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Update to Prettier 2 and use ES Private Fields (#4498)
This commit is contained in:
parent
1397b8e0e7
commit
bced52505f
329 changed files with 2787 additions and 2430 deletions
|
@ -113,7 +113,7 @@ export function run({
|
|||
env = {},
|
||||
stdout = "inherit",
|
||||
stderr = "inherit",
|
||||
stdin = "inherit"
|
||||
stdin = "inherit",
|
||||
}: RunOptions): Process {
|
||||
const res = runOp({
|
||||
cmd: cmd.map(String),
|
||||
|
@ -124,7 +124,7 @@ export function run({
|
|||
stderr: isRid(stderr) ? "" : stderr,
|
||||
stdinRid: isRid(stdin) ? stdin : 0,
|
||||
stdoutRid: isRid(stdout) ? stdout : 0,
|
||||
stderrRid: isRid(stderr) ? stderr : 0
|
||||
stderrRid: isRid(stderr) ? stderr : 0,
|
||||
}) as RunResponse;
|
||||
return new Process(res);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue