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