MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / PublishOptions

Interface PublishOptions

packages/bumpy/src/core/publish-pipeline.ts:13–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11import type { ReleasePlan, PlannedRelease, WorkspacePackage, BumpyConfig, PackageManager } from '../types.ts';
12
13export 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
20export interface PublishResult {
21 published: { name: string; version: string }[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…