(message: string)
| 47 | } |
| 48 | |
| 49 | function fail(message: string): never { |
| 50 | process.stderr.write(`${C_RED}✗${C_RESET} ${message}\n`); |
| 51 | process.exit(1); |
| 52 | } |
| 53 | |
| 54 | function ensureDir(path: string): void { |
| 55 | mkdirSync(path, { recursive: true }); |
no test coverage detected