| 98 | } |
| 99 | |
| 100 | export interface SnapshotReleasePlanResult { |
| 101 | /** The plan with snapshot versions applied (packages already published from this commit removed) */ |
| 102 | plan: ReleasePlan; |
| 103 | /** Packages skipped because this exact snapshot version was already published */ |
| 104 | alreadyPublished: Array<{ name: string; version: string }>; |
| 105 | warnings: string[]; |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Transform a stable release plan (targets from bump files) into a snapshot plan: each |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…