(data: string)
| 30 | } |
| 31 | |
| 32 | export function writeToStderr(data: string): void { |
| 33 | writeOut(process.stderr, data) |
| 34 | } |
| 35 | |
| 36 | // Write error to stderr and exit with code 1. Consolidates the |
| 37 | // console.error + process.exit(1) pattern used in entrypoint fast-paths. |
no test coverage detected