(prefix: string, stderr: string)
| 56 | const SIZE_WATCHDOG_INTERVAL_MS = 5_000 |
| 57 | |
| 58 | function prependStderr(prefix: string, stderr: string): string { |
| 59 | return stderr ? `${prefix} ${stderr}` : prefix |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Thin pipe from a child process stream into TaskOutput. |