| 385 | } |
| 386 | |
| 387 | interface PlanOutput { |
| 388 | mode: CiPlanMode; |
| 389 | bumpFiles: Array<{ |
| 390 | id: string; |
| 391 | summary: string; |
| 392 | releases: Array<{ name: string; type: string }>; |
| 393 | }>; |
| 394 | releases: PlanRelease[]; |
| 395 | packageNames: string[]; |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * CI plan: report what `ci release` would do, without acting. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…