run: make minimal mode more minimal (#31227)

This commit is contained in:
Simon Klee
2026-06-07 23:26:14 +02:00
committed by GitHub
parent 914a643ab2
commit 07808bea12
39 changed files with 3138 additions and 959 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
import { type ChildProcess } from "child_process"
import type { Stream } from "node:stream"
import launch from "cross-spawn"
import { buffer } from "node:stream/consumers"
import { errorMessage } from "./error"
export type Stdio = "inherit" | "pipe" | "ignore"
export type Stdio = "inherit" | "pipe" | "ignore" | number | Stream
export type Shell = boolean | string
export interface Options {