| 11 | import type { ReleasePlan, PlannedRelease, WorkspacePackage, BumpyConfig, PackageManager } from '../types.ts'; |
| 12 | |
| 13 | export interface PublishOptions { |
| 14 | dryRun?: boolean; |
| 15 | tag?: string; // npm dist-tag (e.g., "next", "beta") |
| 16 | /** Skip creating git tags (snapshot releases are ephemeral and never tagged) */ |
| 17 | noTag?: boolean; |
| 18 | } |
| 19 | |
| 20 | export interface PublishResult { |
| 21 | published: { name: string; version: string }[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…