(line: string)
| 10 | export const DEBUG = Boolean(getPlatformEnv('BUILDER_DEBUG')); |
| 11 | |
| 12 | export function write(line: string): void { |
| 13 | process.stderr.write(`${line}\n`); |
| 14 | } |
| 15 | |
| 16 | /** Top-level milestone, prefixed with the Vercel mark. */ |
| 17 | export function info(message: string): void { |