(message: string)
| 542 | } |
| 543 | |
| 544 | function fail(message: string): never { |
| 545 | console.error(`changelog:weekly: ${message}`); |
| 546 | process.exit(1); |
| 547 | } |
| 548 | |
| 549 | function isDirectRun(scriptPath: string | undefined) { |
| 550 | return scriptPath ? import.meta.url === pathToFileURL(scriptPath).href : false; |
no test coverage detected