@teambit/snapping 1.0.1059 → 1.0.1061

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tag-cmd.d.ts CHANGED
@@ -16,6 +16,7 @@ export type TagParams = {
16
16
  minor?: boolean;
17
17
  major?: boolean;
18
18
  increment?: ReleaseType;
19
+ autoTagIncrement?: ReleaseType;
19
20
  preRelease?: string;
20
21
  prereleaseId?: string;
21
22
  ignoreUnresolvedDependencies?: boolean;
@@ -52,6 +53,7 @@ export declare class TagCmd implements Command {
52
53
  }
53
54
  export declare function validateOptions(options: TagParams): {
54
55
  releaseType: ReleaseType;
56
+ autoTagReleaseType: ReleaseType | undefined;
55
57
  preReleaseId: string | undefined;
56
58
  };
57
59
  export declare function tagResultReport(results: TagResults): string | Report;
package/dist/tag-cmd.js CHANGED
@@ -59,7 +59,13 @@ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e =
59
59
  const NOTHING_TO_TAG_MSG = exports.NOTHING_TO_TAG_MSG = 'nothing to tag';
60
60
  const AUTO_TAGGED_MSG = exports.AUTO_TAGGED_MSG = 'auto-tagged dependents';
61
61
  const RELEASE_TYPES = ['major', 'premajor', 'minor', 'preminor', 'patch', 'prepatch', 'prerelease'];
62
- const tagCmdOptions = exports.tagCmdOptions = [['m', 'message <message>', 'a log message describing latest changes'], ['u', 'unmodified', 'include unmodified components (by default, only new and modified components are tagged)'], ['', 'editor [editor]', 'open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).'], ['', 'versions-file <path>', 'path to a file containing component versions. format: "component-id: version"'], ['v', 'ver <version>', 'tag with the given version'], ['l', 'increment <level>', `options are: [${RELEASE_TYPES.join(', ')}], default to patch`], ['', 'prerelease-id <id>', 'prerelease identifier (e.g. "dev" to get "1.0.0-dev.1")'], ['p', 'patch', 'syntactic sugar for "--increment patch"'], ['', 'minor', 'syntactic sugar for "--increment minor"'], ['', 'major', 'syntactic sugar for "--increment major"'], ['', 'pre-release [identifier]', 'syntactic sugar for "--increment prerelease" and `--prerelease-id <identifier>`'], ['', 'snapped', 'tag only components whose head is a snap (not a tag)'], ['', 'unmerged', 'complete a merge process by tagging the unmerged components'], ['', 'skip-tests', 'skip running component tests during tag process'], ['', 'skip-tasks <string>', `skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes.
62
+ const PRE_RELEASE_TYPES = ['prepatch', 'prerelease', 'preminor', 'premajor'];
63
+ function isPreReleaseType(releaseType) {
64
+ return Boolean(releaseType && PRE_RELEASE_TYPES.includes(releaseType));
65
+ }
66
+ const tagCmdOptions = exports.tagCmdOptions = [['m', 'message <message>', 'a log message describing latest changes'], ['u', 'unmodified', 'include unmodified components (by default, only new and modified components are tagged)'], ['', 'editor [editor]', 'open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).'], ['', 'versions-file <path>', 'path to a file containing component versions. format: "component-id: version"'], ['v', 'ver <version>', 'tag with the given version'], ['l', 'increment <level>', `options are: [${RELEASE_TYPES.join(', ')}], default to patch`], ['', 'prerelease-id <id>', 'prerelease identifier (e.g. "dev" to get "1.0.0-dev.1")'], ['p', 'patch', 'syntactic sugar for "--increment patch"'], ['', 'minor', 'syntactic sugar for "--increment minor"'], ['', 'major', 'syntactic sugar for "--increment major"'], ['', 'pre-release [identifier]', 'syntactic sugar for "--increment prerelease" and `--prerelease-id <identifier>`'], ['', 'auto-tag-increment <level>', `the increment level to use for auto-tagged dependents. options are: [${RELEASE_TYPES.join(', ')}].
67
+ by default, dependents are bumped by a patch, unless --increment is one of [${PRE_RELEASE_TYPES.join(', ')}], which they follow.
68
+ note that dependents are auto-tagged transitively, so the entire dependents graph is bumped by this level`], ['', 'snapped', 'tag only components whose head is a snap (not a tag)'], ['', 'unmerged', 'complete a merge process by tagging the unmerged components'], ['', 'skip-tests', 'skip running component tests during tag process'], ['', 'skip-tasks <string>', `skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes.
63
69
  specify the task-name (e.g. "TypescriptCompiler") or the task-aspect-id (e.g. teambit.compilation/compiler)`], ['', 'skip-auto-tag', 'skip auto tagging dependents'], ['', 'soft', 'do not persist. only keep note of the changes to be made'], ['', 'persist [skip-build]', 'persist the changes generated by --soft tag. by default, run the build pipeline, unless "skip-build" is provided'], ['', 'disable-tag-pipeline', 'skip the tag pipeline to avoid publishing the components'], ['', 'ignore-build-errors', 'proceed to tag pipeline even when build pipeline fails'], ['', 'rebuild-deps-graph', 'do not reuse the saved dependencies graph, instead build it from scratch'], ['', 'no-lock-deps', 'do not save the dependencies graph in the tag'], ['', 'increment-by <number>', '(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3.'], ['i', 'ignore-issues <issues>', `ignore component issues (shown in "bit status" as "issues found"), issues to ignore:
64
70
  [${Object.keys(_componentIssues().IssuesClasses).join(', ')}]
65
71
  to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify "*".`], ['I', 'ignore-newest-version', 'allow tagging even when the component has newer versions e.g. for hotfixes.'], ['', 'fail-fast', 'stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed)'], ['b', 'build', 'locally run the build pipeline (i.e. not via rippleCI) and complete the tag'], ['', 'loose', 'allow tag --build to succeed even if tasks like tests or lint fail'], ['', 'detach-head', 'UNSUPPORTED YET. in case a component is checked out to an older version, tag it without changing the head']];
@@ -76,7 +82,7 @@ by default tags all new and modified components. supports version specification
76
82
  use for official releases. for development versions, use 'bit snap' instead.`);
77
83
  _defineProperty(this, "arguments", [{
78
84
  name: 'component-patterns...',
79
- description: `${_legacy().COMPONENT_PATTERN_HELP}. By default, all new and modified are tagged.`
85
+ description: `${_legacy().COMPONENT_PATTERN_HELP}. By default, all new and modified components are tagged.`
80
86
  }]);
81
87
  _defineProperty(this, "helpUrl", 'reference/components/snaps#create-a-tag-(release-version)');
82
88
  _defineProperty(this, "alias", 't');
@@ -121,6 +127,7 @@ use for official releases. for development versions, use 'bit snap' instead.`);
121
127
  }
122
128
  const {
123
129
  releaseType,
130
+ autoTagReleaseType,
124
131
  preReleaseId
125
132
  } = validateOptions(options);
126
133
  const disableTagAndSnapPipelines = disableTagPipeline;
@@ -145,6 +152,7 @@ To undo local tag use the "bit reset" command.`);
145
152
  versionsFile,
146
153
  message,
147
154
  releaseType,
155
+ autoTagReleaseType,
148
156
  preReleaseId,
149
157
  ignoreIssues,
150
158
  ignoreNewestVersion,
@@ -178,15 +186,22 @@ function validateOptions(options) {
178
186
  major,
179
187
  preRelease,
180
188
  increment,
181
- prereleaseId
189
+ autoTagIncrement,
190
+ prereleaseId,
191
+ skipAutoTag
182
192
  } = options;
183
- if (prereleaseId && (!increment || increment === 'major' || increment === 'minor' || increment === 'patch')) {
184
- throw new (_bitError().BitError)(`--prerelease-id should be entered along with --increment flag, while --increment must be one of the following: [prepatch, prerelease, preminor, premajor]`);
193
+ // the prerelease-id is relevant for the dependents as well, so --auto-tag-increment alone is
194
+ // enough to justify it, even when the modified components get a non-prerelease bump.
195
+ if (prereleaseId && !isPreReleaseType(increment) && !isPreReleaseType(autoTagIncrement)) {
196
+ throw new (_bitError().BitError)(`--prerelease-id should be entered along with --increment or --auto-tag-increment flag, while the increment must be one of the following: [${PRE_RELEASE_TYPES.join(', ')}]`);
185
197
  }
186
198
  const releaseFlags = [patch, minor, major, preRelease].filter(x => x);
187
199
  if (releaseFlags.length > 1) {
188
200
  throw new (_bitError().BitError)('you can use only one of the following - patch, minor, major, pre-release');
189
201
  }
202
+ if (autoTagIncrement && skipAutoTag) {
203
+ throw new (_bitError().BitError)('you can use either --auto-tag-increment or --skip-auto-tag, but not both');
204
+ }
190
205
  const getReleaseType = () => {
191
206
  if (increment) {
192
207
  if (!RELEASE_TYPES.includes(increment)) {
@@ -201,6 +216,14 @@ semver allows the following options only: ${RELEASE_TYPES.join(', ')}`);
201
216
  if (preRelease) return 'prerelease';
202
217
  return _legacy().DEFAULT_BIT_RELEASE_TYPE;
203
218
  };
219
+ const getAutoTagReleaseType = () => {
220
+ if (!autoTagIncrement) return undefined;
221
+ if (!RELEASE_TYPES.includes(autoTagIncrement)) {
222
+ throw new (_bitError().BitError)(`invalid auto-tag-increment level "${autoTagIncrement}".
223
+ semver allows the following options only: ${RELEASE_TYPES.join(', ')}`);
224
+ }
225
+ return autoTagIncrement;
226
+ };
204
227
  const getPreReleaseId = () => {
205
228
  if (prereleaseId) {
206
229
  return prereleaseId;
@@ -212,6 +235,7 @@ semver allows the following options only: ${RELEASE_TYPES.join(', ')}`);
212
235
  };
213
236
  return {
214
237
  releaseType: getReleaseType(),
238
+ autoTagReleaseType: getAutoTagReleaseType(),
215
239
  preReleaseId: getPreReleaseId()
216
240
  };
217
241
  }
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_cli","_legacy","_componentIssues","_bitError","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NOTHING_TO_TAG_MSG","exports","AUTO_TAGGED_MSG","RELEASE_TYPES","tagCmdOptions","join","keys","IssuesClasses","TagCmd","constructor","snapping","logger","configStore","name","description","COMPONENT_PATTERN_HELP","cmd","report","patterns","options","message","ver","editor","versionsFile","snapped","unmerged","ignoreIssues","ignoreNewestVersion","skipTests","skipTasks","skipAutoTag","unmodified","soft","persist","disableTagPipeline","ignoreBuildErrors","rebuildDepsGraph","noLockDeps","failFast","incrementBy","detachHead","loose","consoleWarning","releaseType","preReleaseId","validateOptions","disableTagAndSnapPipelines","build","getConfigBoolean","CFG_FORCE_LOCAL_BUILD","Boolean","BitError","params","ids","version","results","tag","chalk","yellow","tagResultReport","patch","minor","major","preRelease","increment","prereleaseId","releaseFlags","filter","x","length","getReleaseType","includes","DEFAULT_BIT_RELEASE_TYPE","getPreReleaseId","undefined","taggedComponents","autoTaggedResults","warnings","newComponents","removedComponents","exportedIds","totalComponentsCount","changedComponents","component","searchWithoutVersion","id","addedComponents","autoTaggedCount","totalCount","formatCompMinimal","formatItem","compInBold","formatCompDetailed","output","autoTag","result","triggeredBy","autoTagComp","map","a","toString","softTagPrefix","isSoftTag","newDesc","changedDesc","buildSections","formatComp","newSection","formatSection","changedSection","removedSection","outputIdsIfExists","publishSection","publishedPackages","items","pkg","exportedSection","warnSymbol","warningsSection","w","summaryMsg","summary","formatSuccessSummary","tagExplanation","formatHint","softTagClarification","bold","hasAutoTagged","autoTagSection","scopeCounts","countBy","scope","sorted","entries","sort","b","MAX_SHOWN","shown","slice","n","remaining","scopeLine","title","formatTitle","scopes","hint","formatDetailsHint","footerParts","joinSections","newDetailed","changedDetailed","detailedFooter","details","code","tagResultOutput","hasVersion","toStringWithoutVersion","label"],"sources":["tag-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { countBy } from 'lodash';\nimport type { ComponentIdList, ComponentID } from '@teambit/component-id';\nimport type { Command, CommandOptions, Report } from '@teambit/cli';\nimport {\n formatItem,\n formatSection,\n formatTitle,\n formatHint,\n formatDetailsHint,\n formatSuccessSummary,\n warnSymbol,\n joinSections,\n} from '@teambit/cli';\nimport type { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport { DEFAULT_BIT_RELEASE_TYPE, COMPONENT_PATTERN_HELP, CFG_FORCE_LOCAL_BUILD } from '@teambit/legacy.constants';\nimport { IssuesClasses } from '@teambit/component-issues';\nimport type { ReleaseType } from 'semver';\nimport { BitError } from '@teambit/bit-error';\nimport type { Logger } from '@teambit/logger';\nimport type { TagResults, SnappingMain } from './snapping.main.runtime';\nimport type { BasicTagParams } from './version-maker';\nimport type { ConfigStoreMain } from '@teambit/config-store';\n\nexport const NOTHING_TO_TAG_MSG = 'nothing to tag';\nexport const AUTO_TAGGED_MSG = 'auto-tagged dependents';\n\nconst RELEASE_TYPES = ['major', 'premajor', 'minor', 'preminor', 'patch', 'prepatch', 'prerelease'];\n\nexport const tagCmdOptions = [\n ['m', 'message <message>', 'a log message describing latest changes'],\n ['u', 'unmodified', 'include unmodified components (by default, only new and modified components are tagged)'],\n [\n '',\n 'editor [editor]',\n 'open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).',\n ],\n ['', 'versions-file <path>', 'path to a file containing component versions. format: \"component-id: version\"'],\n ['v', 'ver <version>', 'tag with the given version'],\n ['l', 'increment <level>', `options are: [${RELEASE_TYPES.join(', ')}], default to patch`],\n ['', 'prerelease-id <id>', 'prerelease identifier (e.g. \"dev\" to get \"1.0.0-dev.1\")'],\n ['p', 'patch', 'syntactic sugar for \"--increment patch\"'],\n ['', 'minor', 'syntactic sugar for \"--increment minor\"'],\n ['', 'major', 'syntactic sugar for \"--increment major\"'],\n ['', 'pre-release [identifier]', 'syntactic sugar for \"--increment prerelease\" and `--prerelease-id <identifier>`'],\n ['', 'snapped', 'tag only components whose head is a snap (not a tag)'],\n ['', 'unmerged', 'complete a merge process by tagging the unmerged components'],\n ['', 'skip-tests', 'skip running component tests during tag process'],\n [\n '',\n 'skip-tasks <string>',\n `skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes.\nspecify the task-name (e.g. \"TypescriptCompiler\") or the task-aspect-id (e.g. teambit.compilation/compiler)`,\n ],\n ['', 'skip-auto-tag', 'skip auto tagging dependents'],\n ['', 'soft', 'do not persist. only keep note of the changes to be made'],\n [\n '',\n 'persist [skip-build]',\n 'persist the changes generated by --soft tag. by default, run the build pipeline, unless \"skip-build\" is provided',\n ],\n ['', 'disable-tag-pipeline', 'skip the tag pipeline to avoid publishing the components'],\n ['', 'ignore-build-errors', 'proceed to tag pipeline even when build pipeline fails'],\n ['', 'rebuild-deps-graph', 'do not reuse the saved dependencies graph, instead build it from scratch'],\n ['', 'no-lock-deps', 'do not save the dependencies graph in the tag'],\n [\n '',\n 'increment-by <number>',\n '(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3.',\n ],\n [\n 'i',\n 'ignore-issues <issues>',\n `ignore component issues (shown in \"bit status\" as \"issues found\"), issues to ignore:\n[${Object.keys(IssuesClasses).join(', ')}]\nto ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify \"*\".`,\n ],\n ['I', 'ignore-newest-version', 'allow tagging even when the component has newer versions e.g. for hotfixes.'],\n [\n '',\n 'fail-fast',\n 'stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed)',\n ],\n ['b', 'build', 'locally run the build pipeline (i.e. not via rippleCI) and complete the tag'],\n ['', 'loose', 'allow tag --build to succeed even if tasks like tests or lint fail'],\n [\n '',\n 'detach-head',\n 'UNSUPPORTED YET. in case a component is checked out to an older version, tag it without changing the head',\n ],\n] as CommandOptions;\n\nexport type TagParams = {\n snapped?: boolean;\n unmerged?: boolean;\n ver?: string;\n patch?: boolean;\n minor?: boolean;\n major?: boolean;\n increment?: ReleaseType;\n preRelease?: string;\n prereleaseId?: string;\n ignoreUnresolvedDependencies?: boolean;\n ignoreIssues?: string;\n incrementBy?: number;\n failFast?: boolean;\n disableTagPipeline?: boolean;\n loose?: boolean;\n versionsFile?: string;\n} & Partial<BasicTagParams>;\n\nexport class TagCmd implements Command {\n name = 'tag [component-patterns...]';\n group = 'version-control';\n description = 'create immutable component snapshots with semantic version tags';\n extendedDescription = `creates tagged versions using semantic versioning (semver) for component releases. tags are immutable and exportable.\nby default tags all new and modified components. supports version specification per pattern using \"@\" (e.g. foo@1.0.0, bar@minor).\nuse for official releases. for development versions, use 'bit snap' instead.`;\n arguments = [\n {\n name: 'component-patterns...',\n description: `${COMPONENT_PATTERN_HELP}. By default, all new and modified are tagged.`,\n },\n ];\n helpUrl = 'reference/components/snaps#create-a-tag-(release-version)';\n alias = 't';\n loader = true;\n options = tagCmdOptions;\n remoteOp = true; // In case a compiler / tester is not installed\n examples = [{ cmd: 'tag --ver 1.0.0', description: 'tag all components to version 1.0.0' }];\n\n constructor(\n private snapping: SnappingMain,\n private logger: Logger,\n private configStore: ConfigStoreMain\n ) {}\n\n // eslint-disable-next-line complexity\n async report([patterns = []]: [string[]], options: TagParams): Promise<string | Report> {\n const {\n message = '',\n ver,\n editor = '',\n versionsFile,\n snapped = false,\n unmerged = false,\n ignoreIssues,\n ignoreNewestVersion = false,\n skipTests = false,\n skipTasks,\n skipAutoTag = false,\n unmodified = false,\n soft = false,\n persist = false,\n disableTagPipeline = false,\n ignoreBuildErrors = false,\n rebuildDepsGraph,\n noLockDeps = false,\n failFast = false,\n incrementBy = 1,\n detachHead,\n loose = false,\n } = options;\n\n if (!message && !persist && !editor) {\n this.logger.consoleWarning(\n `--message will be mandatory in the next few releases. make sure to add a message with your tag`\n );\n }\n const { releaseType, preReleaseId } = validateOptions(options);\n\n const disableTagAndSnapPipelines = disableTagPipeline;\n let build = options.build;\n build = this.configStore.getConfigBoolean(CFG_FORCE_LOCAL_BUILD) || Boolean(build);\n if (persist) {\n if (persist === true) build = true;\n else if (persist === 'skip-build') build = false;\n else throw new BitError(`unknown value for --persist, use either --persist or --persist=skip-build`);\n }\n if (!build && !soft) {\n this.logger.consoleWarning(\n `tagging components on \"main\" lane when using remote build is not recommended. To avoid SemVer versions of your component with failing builds, please refer to:\n- Snap changes in a different lane and merge to \"main\" on your remote (learn more on lanes - https://bit.dev/reference/lanes/getting-started-with-lanes)\n- Use \\`bit tag --build\\` to build your components locally.\n- Use \\`snap\\` or \\`build\\` first to validate your build passing, and then version and export safely.\n\nTo undo local tag use the \"bit reset\" command.`\n );\n }\n\n const params = {\n ids: patterns,\n snapped,\n unmerged,\n editor,\n versionsFile,\n message,\n releaseType,\n preReleaseId,\n ignoreIssues,\n ignoreNewestVersion,\n skipTests,\n skipTasks,\n skipAutoTag,\n build,\n soft,\n persist,\n unmodified,\n disableTagAndSnapPipelines,\n ignoreBuildErrors,\n rebuildDepsGraph,\n noLockDeps,\n incrementBy,\n version: ver,\n failFast,\n detachHead,\n loose,\n };\n\n const results = await this.snapping.tag(params);\n if (!results) return chalk.yellow(persist ? 'no soft-tag found' : NOTHING_TO_TAG_MSG);\n return tagResultReport(results);\n }\n}\n\nexport function validateOptions(options: TagParams) {\n const { patch, minor, major, preRelease, increment, prereleaseId } = options;\n if (prereleaseId && (!increment || increment === 'major' || increment === 'minor' || increment === 'patch')) {\n throw new BitError(\n `--prerelease-id should be entered along with --increment flag, while --increment must be one of the following: [prepatch, prerelease, preminor, premajor]`\n );\n }\n\n const releaseFlags = [patch, minor, major, preRelease].filter((x) => x);\n if (releaseFlags.length > 1) {\n throw new BitError('you can use only one of the following - patch, minor, major, pre-release');\n }\n\n const getReleaseType = (): ReleaseType => {\n if (increment) {\n if (!RELEASE_TYPES.includes(increment)) {\n throw new BitError(`invalid increment-level \"${increment}\".\nsemver allows the following options only: ${RELEASE_TYPES.join(', ')}`);\n }\n return increment;\n }\n if (major) return 'major';\n if (minor) return 'minor';\n if (patch) return 'patch';\n if (preRelease) return 'prerelease';\n return DEFAULT_BIT_RELEASE_TYPE;\n };\n const getPreReleaseId = (): string | undefined => {\n if (prereleaseId) {\n return prereleaseId;\n }\n if (preRelease && typeof preRelease === 'string') {\n return preRelease;\n }\n return undefined;\n };\n\n return {\n releaseType: getReleaseType(),\n preReleaseId: getPreReleaseId(),\n };\n}\n\nexport function tagResultReport(results: TagResults): string | Report {\n const {\n taggedComponents,\n autoTaggedResults,\n warnings,\n newComponents,\n removedComponents,\n exportedIds,\n totalComponentsCount,\n }: TagResults = results;\n const changedComponents = taggedComponents.filter((component) => !newComponents.searchWithoutVersion(component.id));\n const addedComponents = taggedComponents.filter((component) => newComponents.searchWithoutVersion(component.id));\n const autoTaggedCount = autoTaggedResults ? autoTaggedResults.length : 0;\n const totalCount = totalComponentsCount ?? taggedComponents.length + autoTaggedCount;\n\n const formatCompMinimal = (component: ConsumerComponent): string => {\n return formatItem(compInBold(component.id));\n };\n\n const formatCompDetailed = (component: ConsumerComponent): string => {\n let output = formatItem(compInBold(component.id));\n const autoTag = (autoTaggedResults ?? []).filter((result) => result.triggeredBy.searchWithoutVersion(component.id));\n if (autoTag.length) {\n const autoTagComp = autoTag.map((a) => a.component.id.toString());\n output += `\\n ${AUTO_TAGGED_MSG}:\\n ${autoTagComp.join('\\n ')}`;\n }\n return output;\n };\n\n const softTagPrefix = results.isSoftTag ? 'soft-tagged ' : '';\n const newDesc = results.isSoftTag\n ? 'set to be tagged with first version for components when persisted'\n : 'first version for components';\n const changedDesc = results.isSoftTag\n ? 'components that are set to get a version bump when persisted'\n : 'components that got a version bump';\n\n const buildSections = (formatComp: (c: ConsumerComponent) => string) => {\n const newSection = formatSection(softTagPrefix + 'new components', newDesc, addedComponents.map(formatComp));\n const changedSection = formatSection(\n softTagPrefix + 'changed components',\n changedDesc,\n changedComponents.map(formatComp)\n );\n return { newSection, changedSection };\n };\n\n const removedSection = outputIdsIfExists('removed components', removedComponents);\n\n const publishSection = (() => {\n const { publishedPackages } = results;\n if (!publishedPackages || !publishedPackages.length) return '';\n const items = publishedPackages.map((pkg) => formatItem(pkg));\n return formatSection('published components', '', items);\n })();\n\n const exportedSection = (() => {\n if (!exportedIds) return '';\n if (!exportedIds.length) return `${warnSymbol} ${chalk.yellow('no component has been exported')}`;\n const items = exportedIds.map((id) => formatItem(compInBold(id)));\n return formatSection('exported components', '', items);\n })();\n\n const warningsSection =\n warnings && warnings.length ? warnings.map((w) => `${warnSymbol} ${chalk.yellow(w)}`).join('\\n') : '';\n\n const summaryMsg = `${totalCount} component(s) ${results.isSoftTag ? 'soft-' : ''}tagged${exportedIds ? ' and exported' : ''}`;\n const summary = formatSuccessSummary(summaryMsg);\n\n const tagExplanation = results.isSoftTag\n ? formatHint(\n '(use \"bit tag --persist\" to persist the soft-tagged changes as a fully tagged version)\\n(use \"bit reset --soft\" to remove the soft-tags)'\n )\n : exportedIds\n ? ''\n : formatHint('(use \"bit export\" to push these components to a remote)\\n(use \"bit reset\" to unstage versions)');\n\n const softTagClarification = results.isSoftTag\n ? chalk.bold(\n 'keep in mind that this is a soft-tag (changes recorded to be tagged), to persist the changes use --persist flag'\n )\n : '';\n\n const hasAutoTagged = autoTaggedCount > 0;\n\n // Build minimal output (no auto-tagged listing, just counts grouped by scope)\n const { newSection, changedSection } = buildSections(hasAutoTagged ? formatCompMinimal : formatCompDetailed);\n\n const autoTagSection = (() => {\n if (!hasAutoTagged) return '';\n const scopeCounts = countBy(autoTaggedResults, (r) => r.component.id.scope);\n const sorted = Object.entries(scopeCounts).sort(([, a], [, b]) => b - a);\n const MAX_SHOWN = 4;\n const shown = sorted.slice(0, MAX_SHOWN).map(([scope, n]) => `${scope} (${n})`);\n const remaining = sorted.length - MAX_SHOWN;\n const scopeLine = remaining > 0 ? [...shown, `+ ${remaining} more scopes`].join(' · ') : shown.join(' · ');\n const title = formatTitle(`auto-tagged dependents (${autoTaggedCount})`);\n const scopes = ` ${scopeLine}`;\n const hint = formatDetailsHint('full list of auto-tagged dependents');\n return `${title}\\n${scopes}\\n${hint}`;\n })();\n\n const footerParts = [summary, tagExplanation, softTagClarification].filter(Boolean).join('\\n');\n const data = joinSections([\n newSection,\n changedSection,\n autoTagSection,\n removedSection,\n publishSection,\n exportedSection,\n warningsSection,\n footerParts,\n ]);\n\n if (!hasAutoTagged) {\n return data;\n }\n\n // Build detailed output (with full auto-tagged listing)\n const { newSection: newDetailed, changedSection: changedDetailed } = buildSections(formatCompDetailed);\n const detailedFooter = [summary, tagExplanation, softTagClarification].filter(Boolean).join('\\n');\n const details = joinSections([\n newDetailed,\n changedDetailed,\n removedSection,\n publishSection,\n exportedSection,\n warningsSection,\n detailedFooter,\n ]);\n\n return { data, code: 0, details };\n}\n\n/** @deprecated use tagResultReport instead */\nexport function tagResultOutput(results: TagResults): string {\n const result = tagResultReport(results);\n return typeof result === 'string' ? result : result.details || result.data;\n}\n\nexport function compInBold(id: ComponentID): string {\n const version = id.hasVersion() ? `@${id.version}` : '';\n return `${chalk.bold(id.toStringWithoutVersion())}${version}`;\n}\n\nexport function outputIdsIfExists(label: string, ids?: ComponentIdList) {\n if (!ids?.length) return '';\n const items = ids.map((id) => formatItem(id.toStringWithoutVersion(), warnSymbol));\n return formatSection(label, '', items);\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_cli","_legacy","_componentIssues","_bitError","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NOTHING_TO_TAG_MSG","exports","AUTO_TAGGED_MSG","RELEASE_TYPES","PRE_RELEASE_TYPES","isPreReleaseType","releaseType","Boolean","includes","tagCmdOptions","join","keys","IssuesClasses","TagCmd","constructor","snapping","logger","configStore","name","description","COMPONENT_PATTERN_HELP","cmd","report","patterns","options","message","ver","editor","versionsFile","snapped","unmerged","ignoreIssues","ignoreNewestVersion","skipTests","skipTasks","skipAutoTag","unmodified","soft","persist","disableTagPipeline","ignoreBuildErrors","rebuildDepsGraph","noLockDeps","failFast","incrementBy","detachHead","loose","consoleWarning","autoTagReleaseType","preReleaseId","validateOptions","disableTagAndSnapPipelines","build","getConfigBoolean","CFG_FORCE_LOCAL_BUILD","BitError","params","ids","version","results","tag","chalk","yellow","tagResultReport","patch","minor","major","preRelease","increment","autoTagIncrement","prereleaseId","releaseFlags","filter","x","length","getReleaseType","DEFAULT_BIT_RELEASE_TYPE","getAutoTagReleaseType","undefined","getPreReleaseId","taggedComponents","autoTaggedResults","warnings","newComponents","removedComponents","exportedIds","totalComponentsCount","changedComponents","component","searchWithoutVersion","id","addedComponents","autoTaggedCount","totalCount","formatCompMinimal","formatItem","compInBold","formatCompDetailed","output","autoTag","result","triggeredBy","autoTagComp","map","a","toString","softTagPrefix","isSoftTag","newDesc","changedDesc","buildSections","formatComp","newSection","formatSection","changedSection","removedSection","outputIdsIfExists","publishSection","publishedPackages","items","pkg","exportedSection","warnSymbol","warningsSection","w","summaryMsg","summary","formatSuccessSummary","tagExplanation","formatHint","softTagClarification","bold","hasAutoTagged","autoTagSection","scopeCounts","countBy","scope","sorted","entries","sort","b","MAX_SHOWN","shown","slice","n","remaining","scopeLine","title","formatTitle","scopes","hint","formatDetailsHint","footerParts","joinSections","newDetailed","changedDetailed","detailedFooter","details","code","tagResultOutput","hasVersion","toStringWithoutVersion","label"],"sources":["tag-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { countBy } from 'lodash';\nimport type { ComponentIdList, ComponentID } from '@teambit/component-id';\nimport type { Command, CommandOptions, Report } from '@teambit/cli';\nimport {\n formatItem,\n formatSection,\n formatTitle,\n formatHint,\n formatDetailsHint,\n formatSuccessSummary,\n warnSymbol,\n joinSections,\n} from '@teambit/cli';\nimport type { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport { DEFAULT_BIT_RELEASE_TYPE, COMPONENT_PATTERN_HELP, CFG_FORCE_LOCAL_BUILD } from '@teambit/legacy.constants';\nimport { IssuesClasses } from '@teambit/component-issues';\nimport type { ReleaseType } from 'semver';\nimport { BitError } from '@teambit/bit-error';\nimport type { Logger } from '@teambit/logger';\nimport type { TagResults, SnappingMain } from './snapping.main.runtime';\nimport type { BasicTagParams } from './version-maker';\nimport type { ConfigStoreMain } from '@teambit/config-store';\n\nexport const NOTHING_TO_TAG_MSG = 'nothing to tag';\nexport const AUTO_TAGGED_MSG = 'auto-tagged dependents';\n\nconst RELEASE_TYPES = ['major', 'premajor', 'minor', 'preminor', 'patch', 'prepatch', 'prerelease'];\nconst PRE_RELEASE_TYPES = ['prepatch', 'prerelease', 'preminor', 'premajor'];\n\nfunction isPreReleaseType(releaseType?: ReleaseType): boolean {\n return Boolean(releaseType && PRE_RELEASE_TYPES.includes(releaseType));\n}\n\nexport const tagCmdOptions = [\n ['m', 'message <message>', 'a log message describing latest changes'],\n ['u', 'unmodified', 'include unmodified components (by default, only new and modified components are tagged)'],\n [\n '',\n 'editor [editor]',\n 'open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).',\n ],\n ['', 'versions-file <path>', 'path to a file containing component versions. format: \"component-id: version\"'],\n ['v', 'ver <version>', 'tag with the given version'],\n ['l', 'increment <level>', `options are: [${RELEASE_TYPES.join(', ')}], default to patch`],\n ['', 'prerelease-id <id>', 'prerelease identifier (e.g. \"dev\" to get \"1.0.0-dev.1\")'],\n ['p', 'patch', 'syntactic sugar for \"--increment patch\"'],\n ['', 'minor', 'syntactic sugar for \"--increment minor\"'],\n ['', 'major', 'syntactic sugar for \"--increment major\"'],\n ['', 'pre-release [identifier]', 'syntactic sugar for \"--increment prerelease\" and `--prerelease-id <identifier>`'],\n [\n '',\n 'auto-tag-increment <level>',\n `the increment level to use for auto-tagged dependents. options are: [${RELEASE_TYPES.join(', ')}].\nby default, dependents are bumped by a patch, unless --increment is one of [${PRE_RELEASE_TYPES.join(', ')}], which they follow.\nnote that dependents are auto-tagged transitively, so the entire dependents graph is bumped by this level`,\n ],\n ['', 'snapped', 'tag only components whose head is a snap (not a tag)'],\n ['', 'unmerged', 'complete a merge process by tagging the unmerged components'],\n ['', 'skip-tests', 'skip running component tests during tag process'],\n [\n '',\n 'skip-tasks <string>',\n `skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes.\nspecify the task-name (e.g. \"TypescriptCompiler\") or the task-aspect-id (e.g. teambit.compilation/compiler)`,\n ],\n ['', 'skip-auto-tag', 'skip auto tagging dependents'],\n ['', 'soft', 'do not persist. only keep note of the changes to be made'],\n [\n '',\n 'persist [skip-build]',\n 'persist the changes generated by --soft tag. by default, run the build pipeline, unless \"skip-build\" is provided',\n ],\n ['', 'disable-tag-pipeline', 'skip the tag pipeline to avoid publishing the components'],\n ['', 'ignore-build-errors', 'proceed to tag pipeline even when build pipeline fails'],\n ['', 'rebuild-deps-graph', 'do not reuse the saved dependencies graph, instead build it from scratch'],\n ['', 'no-lock-deps', 'do not save the dependencies graph in the tag'],\n [\n '',\n 'increment-by <number>',\n '(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3.',\n ],\n [\n 'i',\n 'ignore-issues <issues>',\n `ignore component issues (shown in \"bit status\" as \"issues found\"), issues to ignore:\n[${Object.keys(IssuesClasses).join(', ')}]\nto ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify \"*\".`,\n ],\n ['I', 'ignore-newest-version', 'allow tagging even when the component has newer versions e.g. for hotfixes.'],\n [\n '',\n 'fail-fast',\n 'stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed)',\n ],\n ['b', 'build', 'locally run the build pipeline (i.e. not via rippleCI) and complete the tag'],\n ['', 'loose', 'allow tag --build to succeed even if tasks like tests or lint fail'],\n [\n '',\n 'detach-head',\n 'UNSUPPORTED YET. in case a component is checked out to an older version, tag it without changing the head',\n ],\n] as CommandOptions;\n\nexport type TagParams = {\n snapped?: boolean;\n unmerged?: boolean;\n ver?: string;\n patch?: boolean;\n minor?: boolean;\n major?: boolean;\n increment?: ReleaseType;\n autoTagIncrement?: ReleaseType;\n preRelease?: string;\n prereleaseId?: string;\n ignoreUnresolvedDependencies?: boolean;\n ignoreIssues?: string;\n incrementBy?: number;\n failFast?: boolean;\n disableTagPipeline?: boolean;\n loose?: boolean;\n versionsFile?: string;\n} & Partial<BasicTagParams>;\n\nexport class TagCmd implements Command {\n name = 'tag [component-patterns...]';\n group = 'version-control';\n description = 'create immutable component snapshots with semantic version tags';\n extendedDescription = `creates tagged versions using semantic versioning (semver) for component releases. tags are immutable and exportable.\nby default tags all new and modified components. supports version specification per pattern using \"@\" (e.g. foo@1.0.0, bar@minor).\nuse for official releases. for development versions, use 'bit snap' instead.`;\n arguments = [\n {\n name: 'component-patterns...',\n description: `${COMPONENT_PATTERN_HELP}. By default, all new and modified components are tagged.`,\n },\n ];\n helpUrl = 'reference/components/snaps#create-a-tag-(release-version)';\n alias = 't';\n loader = true;\n options = tagCmdOptions;\n remoteOp = true; // In case a compiler / tester is not installed\n examples = [{ cmd: 'tag --ver 1.0.0', description: 'tag all components to version 1.0.0' }];\n\n constructor(\n private snapping: SnappingMain,\n private logger: Logger,\n private configStore: ConfigStoreMain\n ) {}\n\n // eslint-disable-next-line complexity\n async report([patterns = []]: [string[]], options: TagParams): Promise<string | Report> {\n const {\n message = '',\n ver,\n editor = '',\n versionsFile,\n snapped = false,\n unmerged = false,\n ignoreIssues,\n ignoreNewestVersion = false,\n skipTests = false,\n skipTasks,\n skipAutoTag = false,\n unmodified = false,\n soft = false,\n persist = false,\n disableTagPipeline = false,\n ignoreBuildErrors = false,\n rebuildDepsGraph,\n noLockDeps = false,\n failFast = false,\n incrementBy = 1,\n detachHead,\n loose = false,\n } = options;\n\n if (!message && !persist && !editor) {\n this.logger.consoleWarning(\n `--message will be mandatory in the next few releases. make sure to add a message with your tag`\n );\n }\n const { releaseType, autoTagReleaseType, preReleaseId } = validateOptions(options);\n\n const disableTagAndSnapPipelines = disableTagPipeline;\n let build = options.build;\n build = this.configStore.getConfigBoolean(CFG_FORCE_LOCAL_BUILD) || Boolean(build);\n if (persist) {\n if (persist === true) build = true;\n else if (persist === 'skip-build') build = false;\n else throw new BitError(`unknown value for --persist, use either --persist or --persist=skip-build`);\n }\n if (!build && !soft) {\n this.logger.consoleWarning(\n `tagging components on \"main\" lane when using remote build is not recommended. To avoid SemVer versions of your component with failing builds, please refer to:\n- Snap changes in a different lane and merge to \"main\" on your remote (learn more on lanes - https://bit.dev/reference/lanes/getting-started-with-lanes)\n- Use \\`bit tag --build\\` to build your components locally.\n- Use \\`snap\\` or \\`build\\` first to validate your build passing, and then version and export safely.\n\nTo undo local tag use the \"bit reset\" command.`\n );\n }\n\n const params = {\n ids: patterns,\n snapped,\n unmerged,\n editor,\n versionsFile,\n message,\n releaseType,\n autoTagReleaseType,\n preReleaseId,\n ignoreIssues,\n ignoreNewestVersion,\n skipTests,\n skipTasks,\n skipAutoTag,\n build,\n soft,\n persist,\n unmodified,\n disableTagAndSnapPipelines,\n ignoreBuildErrors,\n rebuildDepsGraph,\n noLockDeps,\n incrementBy,\n version: ver,\n failFast,\n detachHead,\n loose,\n };\n\n const results = await this.snapping.tag(params);\n if (!results) return chalk.yellow(persist ? 'no soft-tag found' : NOTHING_TO_TAG_MSG);\n return tagResultReport(results);\n }\n}\n\nexport function validateOptions(options: TagParams) {\n const { patch, minor, major, preRelease, increment, autoTagIncrement, prereleaseId, skipAutoTag } = options;\n // the prerelease-id is relevant for the dependents as well, so --auto-tag-increment alone is\n // enough to justify it, even when the modified components get a non-prerelease bump.\n if (prereleaseId && !isPreReleaseType(increment) && !isPreReleaseType(autoTagIncrement)) {\n throw new BitError(\n `--prerelease-id should be entered along with --increment or --auto-tag-increment flag, while the increment must be one of the following: [${PRE_RELEASE_TYPES.join(', ')}]`\n );\n }\n\n const releaseFlags = [patch, minor, major, preRelease].filter((x) => x);\n if (releaseFlags.length > 1) {\n throw new BitError('you can use only one of the following - patch, minor, major, pre-release');\n }\n\n if (autoTagIncrement && skipAutoTag) {\n throw new BitError('you can use either --auto-tag-increment or --skip-auto-tag, but not both');\n }\n\n const getReleaseType = (): ReleaseType => {\n if (increment) {\n if (!RELEASE_TYPES.includes(increment)) {\n throw new BitError(`invalid increment-level \"${increment}\".\nsemver allows the following options only: ${RELEASE_TYPES.join(', ')}`);\n }\n return increment;\n }\n if (major) return 'major';\n if (minor) return 'minor';\n if (patch) return 'patch';\n if (preRelease) return 'prerelease';\n return DEFAULT_BIT_RELEASE_TYPE;\n };\n const getAutoTagReleaseType = (): ReleaseType | undefined => {\n if (!autoTagIncrement) return undefined;\n if (!RELEASE_TYPES.includes(autoTagIncrement)) {\n throw new BitError(`invalid auto-tag-increment level \"${autoTagIncrement}\".\nsemver allows the following options only: ${RELEASE_TYPES.join(', ')}`);\n }\n return autoTagIncrement;\n };\n const getPreReleaseId = (): string | undefined => {\n if (prereleaseId) {\n return prereleaseId;\n }\n if (preRelease && typeof preRelease === 'string') {\n return preRelease;\n }\n return undefined;\n };\n\n return {\n releaseType: getReleaseType(),\n autoTagReleaseType: getAutoTagReleaseType(),\n preReleaseId: getPreReleaseId(),\n };\n}\n\nexport function tagResultReport(results: TagResults): string | Report {\n const {\n taggedComponents,\n autoTaggedResults,\n warnings,\n newComponents,\n removedComponents,\n exportedIds,\n totalComponentsCount,\n }: TagResults = results;\n const changedComponents = taggedComponents.filter((component) => !newComponents.searchWithoutVersion(component.id));\n const addedComponents = taggedComponents.filter((component) => newComponents.searchWithoutVersion(component.id));\n const autoTaggedCount = autoTaggedResults ? autoTaggedResults.length : 0;\n const totalCount = totalComponentsCount ?? taggedComponents.length + autoTaggedCount;\n\n const formatCompMinimal = (component: ConsumerComponent): string => {\n return formatItem(compInBold(component.id));\n };\n\n const formatCompDetailed = (component: ConsumerComponent): string => {\n let output = formatItem(compInBold(component.id));\n const autoTag = (autoTaggedResults ?? []).filter((result) => result.triggeredBy.searchWithoutVersion(component.id));\n if (autoTag.length) {\n const autoTagComp = autoTag.map((a) => a.component.id.toString());\n output += `\\n ${AUTO_TAGGED_MSG}:\\n ${autoTagComp.join('\\n ')}`;\n }\n return output;\n };\n\n const softTagPrefix = results.isSoftTag ? 'soft-tagged ' : '';\n const newDesc = results.isSoftTag\n ? 'set to be tagged with first version for components when persisted'\n : 'first version for components';\n const changedDesc = results.isSoftTag\n ? 'components that are set to get a version bump when persisted'\n : 'components that got a version bump';\n\n const buildSections = (formatComp: (c: ConsumerComponent) => string) => {\n const newSection = formatSection(softTagPrefix + 'new components', newDesc, addedComponents.map(formatComp));\n const changedSection = formatSection(\n softTagPrefix + 'changed components',\n changedDesc,\n changedComponents.map(formatComp)\n );\n return { newSection, changedSection };\n };\n\n const removedSection = outputIdsIfExists('removed components', removedComponents);\n\n const publishSection = (() => {\n const { publishedPackages } = results;\n if (!publishedPackages || !publishedPackages.length) return '';\n const items = publishedPackages.map((pkg) => formatItem(pkg));\n return formatSection('published components', '', items);\n })();\n\n const exportedSection = (() => {\n if (!exportedIds) return '';\n if (!exportedIds.length) return `${warnSymbol} ${chalk.yellow('no component has been exported')}`;\n const items = exportedIds.map((id) => formatItem(compInBold(id)));\n return formatSection('exported components', '', items);\n })();\n\n const warningsSection =\n warnings && warnings.length ? warnings.map((w) => `${warnSymbol} ${chalk.yellow(w)}`).join('\\n') : '';\n\n const summaryMsg = `${totalCount} component(s) ${results.isSoftTag ? 'soft-' : ''}tagged${exportedIds ? ' and exported' : ''}`;\n const summary = formatSuccessSummary(summaryMsg);\n\n const tagExplanation = results.isSoftTag\n ? formatHint(\n '(use \"bit tag --persist\" to persist the soft-tagged changes as a fully tagged version)\\n(use \"bit reset --soft\" to remove the soft-tags)'\n )\n : exportedIds\n ? ''\n : formatHint('(use \"bit export\" to push these components to a remote)\\n(use \"bit reset\" to unstage versions)');\n\n const softTagClarification = results.isSoftTag\n ? chalk.bold(\n 'keep in mind that this is a soft-tag (changes recorded to be tagged), to persist the changes use --persist flag'\n )\n : '';\n\n const hasAutoTagged = autoTaggedCount > 0;\n\n // Build minimal output (no auto-tagged listing, just counts grouped by scope)\n const { newSection, changedSection } = buildSections(hasAutoTagged ? formatCompMinimal : formatCompDetailed);\n\n const autoTagSection = (() => {\n if (!hasAutoTagged) return '';\n const scopeCounts = countBy(autoTaggedResults, (r) => r.component.id.scope);\n const sorted = Object.entries(scopeCounts).sort(([, a], [, b]) => b - a);\n const MAX_SHOWN = 4;\n const shown = sorted.slice(0, MAX_SHOWN).map(([scope, n]) => `${scope} (${n})`);\n const remaining = sorted.length - MAX_SHOWN;\n const scopeLine = remaining > 0 ? [...shown, `+ ${remaining} more scopes`].join(' · ') : shown.join(' · ');\n const title = formatTitle(`auto-tagged dependents (${autoTaggedCount})`);\n const scopes = ` ${scopeLine}`;\n const hint = formatDetailsHint('full list of auto-tagged dependents');\n return `${title}\\n${scopes}\\n${hint}`;\n })();\n\n const footerParts = [summary, tagExplanation, softTagClarification].filter(Boolean).join('\\n');\n const data = joinSections([\n newSection,\n changedSection,\n autoTagSection,\n removedSection,\n publishSection,\n exportedSection,\n warningsSection,\n footerParts,\n ]);\n\n if (!hasAutoTagged) {\n return data;\n }\n\n // Build detailed output (with full auto-tagged listing)\n const { newSection: newDetailed, changedSection: changedDetailed } = buildSections(formatCompDetailed);\n const detailedFooter = [summary, tagExplanation, softTagClarification].filter(Boolean).join('\\n');\n const details = joinSections([\n newDetailed,\n changedDetailed,\n removedSection,\n publishSection,\n exportedSection,\n warningsSection,\n detailedFooter,\n ]);\n\n return { data, code: 0, details };\n}\n\n/** @deprecated use tagResultReport instead */\nexport function tagResultOutput(results: TagResults): string {\n const result = tagResultReport(results);\n return typeof result === 'string' ? result : result.details || result.data;\n}\n\nexport function compInBold(id: ComponentID): string {\n const version = id.hasVersion() ? `@${id.version}` : '';\n return `${chalk.bold(id.toStringWithoutVersion())}${version}`;\n}\n\nexport function outputIdsIfExists(label: string, ids?: ComponentIdList) {\n if (!ids?.length) return '';\n const items = ids.map((id) => formatItem(id.toStringWithoutVersion(), warnSymbol));\n return formatSection(label, '', items);\n}\n"],"mappings":"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","ignoreList":[]}
@@ -38,6 +38,7 @@ export type VersionMakerParams = {
38
38
  copyLogFromPreviousSnap?: boolean;
39
39
  exactVersion?: string | null | undefined;
40
40
  releaseType?: ReleaseType;
41
+ autoTagReleaseType?: ReleaseType;
41
42
  incrementBy?: number;
42
43
  isSnap?: boolean;
43
44
  packageManagerConfigRootDir?: string;
@@ -542,6 +542,7 @@ class VersionMaker {
542
542
  async setFutureVersions(autoTagIds) {
543
543
  const {
544
544
  releaseType,
545
+ autoTagReleaseType,
545
546
  tagDataPerComp,
546
547
  incrementBy,
547
548
  persist,
@@ -567,6 +568,10 @@ class VersionMaker {
567
568
  return modelComponent.getVersionToAdd(exactVersionOrReleaseType.releaseType, exactVersionOrReleaseType.exactVersion, undefined, componentToTag.componentMap?.nextVersion?.preRelease);
568
569
  }
569
570
  if (isAutoTag) {
571
+ // when set, it overrides the default patch bump (and the pre-release propagation below)
572
+ if (autoTagReleaseType) {
573
+ return soft ? autoTagReleaseType : modelComponent.getVersionToAdd(autoTagReleaseType, undefined, incrementBy, preReleaseId);
574
+ }
570
575
  // auto-tag always bumped as patch unless it's pre-release
571
576
  if (isPreReleaseLike) {
572
577
  return soft ? releaseType : modelComponent.getVersionToAdd(releaseType, exactVersion, incrementBy, preReleaseId);