| 3 | const IS_WINDOWS = process.platform === 'win32'; |
| 4 | |
| 5 | interface RunResult { |
| 6 | code: number | null; |
| 7 | stdout: string; |
| 8 | stderr: string; |
| 9 | } |
| 10 | |
| 11 | async function run(cmd: string, args: string[], cwd: string): Promise<RunResult> { |
| 12 | return new Promise((resolve, reject) => { |
nothing calls this directly
no outgoing calls
no test coverage detected