| 2 | import { SpawnOptions } from "child_process" |
| 3 | |
| 4 | export interface SpawnSafeOptions extends SpawnOptions { |
| 5 | throwOnError?: boolean |
| 6 | logStdErrOnError?: boolean |
| 7 | maxBuffer?: number |
| 8 | } |
| 9 | |
| 10 | const defaultOptions: SpawnSafeOptions = { |
| 11 | logStdErrOnError: true, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…