| 312 | releases: BumpFileRelease[]; |
| 313 | summary: string; // markdown body |
| 314 | /** Channel directory this file lives in (`.bumpy/<channel>/`), if any. Undefined = `.bumpy/` root. */ |
| 315 | channel?: string; |
| 316 | /** |
| 317 | * When true, this file's summary is omitted from changelogs / release notes |
| 318 | * (still applies its version bumps). Set via the `$changelog: false` reserved |
| 319 | * frontmatter key — useful for internal changes not worth a changelog line, |
| 320 | * while keeping the body as a note for reviewers. |
| 321 | */ |
| 322 | noChangelog?: boolean; |
| 323 | } |
| 324 | |
| 325 | // ---- Workspace ---- |
| 326 | |
| 327 | export interface WorkspacePackage { |
| 328 | name: string; |
| 329 | version: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…