| 373 | export type CiPlanMode = 'version-pr' | 'publish' | 'nothing'; |
| 374 | |
| 375 | interface PlanRelease { |
| 376 | name: string; |
| 377 | type: string; |
| 378 | oldVersion: string; |
| 379 | newVersion: string; |
| 380 | dir?: string; |
| 381 | bumpFiles: string[]; |
| 382 | isDependencyBump: boolean; |
| 383 | isCascadeBump: boolean; |
| 384 | publishTargets: Array<{ type: string }>; |
| 385 | } |
| 386 | |
| 387 | interface PlanOutput { |
| 388 | mode: CiPlanMode; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…