| 106 | }; |
| 107 | } |
| 108 | |
| 109 | export interface ChannelReleasePlanResult { |
| 110 | /** The plan with prerelease versions applied (packages already published from HEAD removed) */ |
| 111 | plan: ReleasePlan; |
| 112 | /** Packages skipped because their latest prerelease was already published from this commit */ |
| 113 | alreadyPublished: Array<{ name: string; version: string }>; |
| 114 | warnings: string[]; |
| 115 | } |
| 116 | |
| 117 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…