(target: string, snapshot: ResolvedSnapshot)
| 94 | |
| 95 | /** Compose the snapshot version for one target: `<target>-<name>-<suffix>` */ |
| 96 | export function snapshotVersion(target: string, snapshot: ResolvedSnapshot): string { |
| 97 | return `${target}-${snapshot.name}-${snapshot.suffix}`; |
| 98 | } |
| 99 | |
| 100 | export interface SnapshotReleasePlanResult { |
| 101 | /** The plan with snapshot versions applied (packages already published from this commit removed) */ |
no outgoing calls
no test coverage detected
searching dependent graphs…