| 7 | // ---- Formatter interface ---- |
| 8 | |
| 9 | export interface ChangelogContext { |
| 10 | release: PlannedRelease; |
| 11 | /** Bump files that contributed to this release */ |
| 12 | bumpFiles: BumpFile[]; |
| 13 | /** ISO date string (YYYY-MM-DD) */ |
| 14 | date: string; |
| 15 | /** Where this entry will be used — formatters can customize output per target (default: 'changelog') */ |
| 16 | target?: 'changelog' | 'github-release'; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * A changelog formatter receives full context and returns the complete |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…