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

Interface ResolvedSnapshot

packages/bumpy/src/core/snapshot.ts:21–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20/** A snapshot request with name sanitized and per-run suffix resolved */
21export interface ResolvedSnapshot {
22 /** Raw name as passed on the CLI (for messages) */
23 rawName: string;
24 /** Sanitized name — used as the version preid and the default dist-tag */
25 name: string;
26 /** npm dist-tag the snapshot publishes to (explicit `--tag` wins, else the name) */
27 tag: string;
28 strategy: SnapshotVersionStrategy;
29 /** Version suffix shared across every package in the run (the short sha or timestamp) */
30 suffix: string;
31}
32
33/**
34 * Turn a name into a valid semver prerelease identifier / npm dist-tag: lowercase,

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…