()
| 529 | } |
| 530 | |
| 531 | function printUsage() { |
| 532 | console.log(`changelog:weekly drafts an editable weekly digest packet. |
| 533 | |
| 534 | Usage: |
| 535 | bun run changelog:weekly --from YYYY-MM-DD --to YYYY-MM-DD [--write] [--force] |
| 536 | |
| 537 | Examples: |
| 538 | bun run changelog:weekly --from 2026-06-01 --to 2026-06-07 |
| 539 | bun run changelog:weekly --from 2026-06-01 --to 2026-06-07 --write |
| 540 | bun run changelog:weekly --from 2026-06-01 --to 2026-06-07 --write --force |
| 541 | `); |
| 542 | } |
| 543 | |
| 544 | function fail(message: string): never { |
| 545 | console.error(`changelog:weekly: ${message}`); |
no outgoing calls
no test coverage detected