@teambit/status 0.0.100 → 0.0.103

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.
@@ -34,8 +34,9 @@ export declare class StatusCmd implements Command {
34
34
  softTaggedComponents: string[];
35
35
  snappedComponents: string[];
36
36
  }>;
37
- report(_args: any, { strict }: {
37
+ report(_args: any, { strict, verbose }: {
38
38
  strict?: boolean;
39
+ verbose?: boolean;
39
40
  }): Promise<{
40
41
  data: string;
41
42
  code: number;
@@ -113,6 +113,26 @@ function _constants() {
113
113
  return data;
114
114
  }
115
115
 
116
+ function _lodash() {
117
+ const data = require("lodash");
118
+
119
+ _lodash = function () {
120
+ return data;
121
+ };
122
+
123
+ return data;
124
+ }
125
+
126
+ function _componentVersion() {
127
+ const data = require("@teambit/component-version");
128
+
129
+ _componentVersion = function () {
130
+ return data;
131
+ };
132
+
133
+ return data;
134
+ }
135
+
116
136
  const individualFilesDesc = `these components were added as individual files and not as directories, which are invalid in Harmony
117
137
  please make sure each component has its own directory and re-add it. alternatively, use "bit move --component" to help with the move.`;
118
138
  const TROUBLESHOOTING_MESSAGE = `${_chalk().default.yellow(`learn more at https://${_constants().BASE_DOCS_DOMAIN}/components/adding-components`)}`;
@@ -125,7 +145,7 @@ class StatusCmd {
125
145
  (0, _defineProperty2().default)(this, "group", 'development');
126
146
  (0, _defineProperty2().default)(this, "extendedDescription", void 0);
127
147
  (0, _defineProperty2().default)(this, "alias", 's');
128
- (0, _defineProperty2().default)(this, "options", [['j', 'json', 'return a json version of the component'], ['', 'strict', 'in case issues found, exit with code 1']]);
148
+ (0, _defineProperty2().default)(this, "options", [['j', 'json', 'return a json version of the component'], ['', 'verbose', 'show full snap hashes'], ['', 'strict', 'in case issues found, exit with code 1']]);
129
149
  (0, _defineProperty2().default)(this, "loader", true);
130
150
  (0, _defineProperty2().default)(this, "migration", true);
131
151
  }
@@ -171,7 +191,8 @@ class StatusCmd {
171
191
  }
172
192
 
173
193
  async report(_args, {
174
- strict
194
+ strict,
195
+ verbose
175
196
  }) {
176
197
  const {
177
198
  newComponents,
@@ -222,7 +243,16 @@ class StatusCmd {
222
243
  }
223
244
 
224
245
  const localVersions = component.getLocalTagsOrHashes();
225
- bitFormatted += `. versions: ${localVersions.join(', ')}`;
246
+
247
+ if (verbose) {
248
+ bitFormatted += `. versions: ${localVersions.join(', ')}`;
249
+ } else {
250
+ const [snaps, tags] = (0, _lodash().partition)(localVersions, version => (0, _componentVersion().isHash)(version));
251
+ const tagsStr = tags.length ? `versions: ${tags.join(', ')}` : '';
252
+ const snapsStr = snaps.length ? `${snaps.length} snap(s)` : '';
253
+ bitFormatted += `. `;
254
+ bitFormatted += tagsStr && snapsStr ? `${tagsStr}. and ${snapsStr}` : tagsStr || snapsStr;
255
+ }
226
256
  }
227
257
 
228
258
  bitFormatted += ' ... ';
@@ -1 +1 @@
1
- {"version":3,"names":["individualFilesDesc","TROUBLESHOOTING_MESSAGE","chalk","yellow","BASE_DOCS_DOMAIN","StatusCmd","constructor","status","json","newComponents","modifiedComponent","stagedComponents","componentsWithIssues","importPendingComponents","autoTagPendingComponents","invalidComponents","outdatedComponents","mergePendingComponents","componentsDuringMergeState","componentsWithIndividualFiles","softTaggedComponents","snappedComponents","map","c","id","toString","issues","toObject","s","report","_args","strict","laneName","showTroubleshootingLink","format","component","showVersions","message","getBitId","BitId","Component","ModelComponent","toBitId","Error","bitId","find","compWithIssue","isEqual","softTagged","softTaggedId","messageStatusText","messageStatusTextWithSoftTag","color","messageStatus","formatBitString","toStringWithoutVersion","bitFormatted","formatNewBit","localVersions","getLocalTagsOrHashes","join","red","statusFailureMsg","formatIssues","importPendingWarning","length","IMPORT_PENDING_MSG","splitByMissing","R","groupBy","includes","missing","nonMissing","outdatedTitle","underline","white","outdatedDesc","outdatedComps","cyan","version","latestVersion","outdatedStr","pendingMergeTitle","pendingMergeDesc","pendingMergeComps","diverge","snapsOnLocalOnly","snapsOnRemoteOnly","pendingMergeStr","compWithConflictsTitle","compWithConflictsDesc","compWithConflictsComps","compWithConflictsStr","newComponentDescription","newComponentsTitle","newComponentsOutput","modifiedDesc","modifiedComponentOutput","immutableUnshift","autoTagPendingOutput","invalidDesc","invalidComponentOutput","getInvalidComponentLabel","error","sort","statusInvalidComponentsMsg","individualFilesOutput","stagedDesc","stagedComponentsOutput","snappedDesc","snappedComponentsOutput","laneStr","bold","troubleshootingStr","statusMsg","filter","x","results","statusWorkspaceIsCleanMsg","exitCode","data","code"],"sources":["status-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { BitId } from '@teambit/legacy-bit-id';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { immutableUnshift } from '@teambit/legacy/dist/utils';\nimport { formatBitString, formatNewBit } from '@teambit/legacy/dist/cli/chalk-box';\nimport { getInvalidComponentLabel, formatIssues } from '@teambit/legacy/dist/cli/templates/component-issues-template';\nimport { ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport {\n BASE_DOCS_DOMAIN,\n IMPORT_PENDING_MSG,\n statusFailureMsg,\n statusInvalidComponentsMsg,\n statusWorkspaceIsCleanMsg,\n} from '@teambit/legacy/dist/constants';\nimport { StatusMain, StatusResult } from './status.main.runtime';\n\nconst individualFilesDesc = `these components were added as individual files and not as directories, which are invalid in Harmony\nplease make sure each component has its own directory and re-add it. alternatively, use \"bit move --component\" to help with the move.`;\nconst TROUBLESHOOTING_MESSAGE = `${chalk.yellow(\n `learn more at https://${BASE_DOCS_DOMAIN}/components/adding-components`\n)}`;\n\nexport class StatusCmd implements Command {\n name = 'status';\n description = 'present the current status of components in the workspace, and notifies when issues are detected';\n group = 'development';\n extendedDescription: string;\n alias = 's';\n options = [\n ['j', 'json', 'return a json version of the component'],\n ['', 'strict', 'in case issues found, exit with code 1'],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private status: StatusMain) {}\n\n async json() {\n const {\n newComponents,\n modifiedComponent,\n stagedComponents,\n componentsWithIssues,\n importPendingComponents,\n autoTagPendingComponents,\n invalidComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n }: StatusResult = await this.status.status();\n return {\n newComponents,\n modifiedComponent: modifiedComponent.map((c) => c.id.toString()),\n stagedComponents: stagedComponents.map((c) => c.id()),\n componentsWithIssues: componentsWithIssues.map((c) => ({\n id: c.id.toString(),\n issues: c.issues?.toObject(),\n })),\n importPendingComponents: importPendingComponents.map((id) => id.toString()),\n autoTagPendingComponents: autoTagPendingComponents.map((s) => s.toString()),\n invalidComponents,\n outdatedComponents: outdatedComponents.map((c) => c.id.toString()),\n mergePendingComponents: mergePendingComponents.map((c) => c.id.toString()),\n componentsDuringMergeState: componentsDuringMergeState.map((id) => id.toString()),\n componentsWithIndividualFiles: componentsWithIndividualFiles.map((c) => c.id.toString()),\n softTaggedComponents: softTaggedComponents.map((s) => s.toString()),\n snappedComponents: snappedComponents.map((s) => s.toString()),\n };\n }\n\n async report(_args, { strict }: { strict?: boolean }) {\n const {\n newComponents,\n modifiedComponent,\n stagedComponents,\n componentsWithIssues,\n importPendingComponents,\n autoTagPendingComponents,\n invalidComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n laneName,\n }: StatusResult = await this.status.status();\n // If there is problem with at least one component we want to show a link to the\n // troubleshooting doc\n let showTroubleshootingLink = false;\n\n function format(component: BitId | Component | ModelComponent, showVersions = false, message?: string): string {\n const getBitId = () => {\n if (component instanceof BitId) return component;\n if (component instanceof Component) return component.id;\n if (component instanceof ModelComponent) return component.toBitId();\n throw new Error(`type of component ${component} is not supported`);\n };\n const bitId = getBitId();\n const issues = componentsWithIssues.find((compWithIssue: Component) => compWithIssue.id.isEqual(bitId));\n const softTagged = softTaggedComponents.find((softTaggedId) => softTaggedId.isEqual(bitId));\n\n const messageStatusText = message || 'ok';\n const messageStatusTextWithSoftTag = softTagged ? `${messageStatusText} (soft-tagged)` : messageStatusText;\n const color = message ? 'yellow' : 'green';\n const messageStatus = chalk[color](messageStatusTextWithSoftTag);\n\n if (component instanceof BitId) {\n return `${formatBitString(component.toStringWithoutVersion())} ... ${messageStatus}`;\n }\n let bitFormatted = `${formatNewBit(component)}`;\n if (showVersions) {\n if (!(component instanceof ModelComponent)) {\n throw new Error(`expect \"${component}\" to be instance of ModelComponent`);\n }\n const localVersions = component.getLocalTagsOrHashes();\n bitFormatted += `. versions: ${localVersions.join(', ')}`;\n }\n bitFormatted += ' ... ';\n if (!issues) return `${bitFormatted}${messageStatus}`;\n showTroubleshootingLink = true;\n return `${bitFormatted} ${chalk.red(statusFailureMsg)}${formatIssues(issues)}`;\n }\n\n const importPendingWarning = importPendingComponents.length ? chalk.yellow(`${IMPORT_PENDING_MSG}.\\n`) : '';\n\n const splitByMissing = R.groupBy((component) => {\n return component.includes(statusFailureMsg) ? 'missing' : 'nonMissing';\n });\n const { missing, nonMissing } = splitByMissing(newComponents.map((c) => format(c)));\n\n const outdatedTitle = chalk.underline.white('pending updates');\n const outdatedDesc =\n '(use \"bit checkout [version] [component_id]\" to merge changes)\\n(use \"bit diff [component_id] [new_version]\" to compare changes)\\n(use \"bit log [component_id]\" to list all available versions)\\n';\n const outdatedComps = outdatedComponents\n .map((component) => {\n return ` > ${chalk.cyan(component.id.toStringWithoutVersion())} current: ${component.id.version} latest: ${\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.latestVersion\n }\\n`;\n })\n .join('');\n\n const outdatedStr = outdatedComponents.length ? [outdatedTitle, outdatedDesc, outdatedComps].join('\\n') : '';\n\n const pendingMergeTitle = chalk.underline.white('pending merge');\n const pendingMergeDesc = `(use \"bit untag\" to add local changes on top of the remote and discard local tags.\nalternatively, to keep local tags/snaps history, use \"bit merge <remote-name>/<lane-name> [component-id]\")\\n`;\n const pendingMergeComps = mergePendingComponents\n .map((component) => {\n return ` > ${chalk.cyan(component.id.toString())} local and remote have diverged and have ${\n component.diverge.snapsOnLocalOnly.length\n } and ${component.diverge.snapsOnRemoteOnly.length} different snaps each, respectively\\n`;\n })\n .join('');\n\n const pendingMergeStr = pendingMergeComps.length\n ? [pendingMergeTitle, pendingMergeDesc, pendingMergeComps].join('\\n')\n : '';\n\n const compWithConflictsTitle = chalk.underline.white('components during merge state');\n const compWithConflictsDesc = `(use \"bit merge [component-id] --resolve\" to mark them as resolved and snap the changes\nor use \"bit merge [component-id] --abort\" to cancel the merge operation)\\n`;\n const compWithConflictsComps = componentsDuringMergeState\n .map((id) => {\n return ` > ${chalk.cyan(id.toString())}`;\n })\n .join('');\n\n const compWithConflictsStr = compWithConflictsComps.length\n ? [compWithConflictsTitle, compWithConflictsDesc, compWithConflictsComps].join('\\n')\n : '';\n\n const newComponentDescription = '\\n(use \"bit tag --all [version]\" to lock a version with all your changes)\\n';\n const newComponentsTitle = newComponents.length\n ? chalk.underline.white('new components') + newComponentDescription\n : '';\n\n const newComponentsOutput = [newComponentsTitle, ...(nonMissing || []), ...(missing || [])].join('\\n');\n\n const modifiedDesc = '(use \"bit diff\" to compare changes)\\n';\n const modifiedComponentOutput = immutableUnshift(\n modifiedComponent.map((c) => format(c)),\n modifiedComponent.length\n ? chalk.underline.white('modified components') + newComponentDescription + modifiedDesc\n : ''\n ).join('\\n');\n\n const autoTagPendingOutput = immutableUnshift(\n autoTagPendingComponents.map((c) => format(c)),\n autoTagPendingComponents.length\n ? chalk.underline.white('components pending to be tagged automatically (when their dependencies are tagged)')\n : ''\n ).join('\\n');\n\n const invalidDesc = '\\nthese components were failed to load.\\n';\n const invalidComponentOutput = immutableUnshift(\n invalidComponents.map((c) => format(c.id, true, getInvalidComponentLabel(c.error))).sort(),\n invalidComponents.length ? chalk.underline.white(statusInvalidComponentsMsg) + invalidDesc : ''\n ).join('\\n');\n\n const individualFilesOutput = immutableUnshift(\n componentsWithIndividualFiles.map((c) => format(c.id, false, 'individual files')).sort(),\n componentsWithIndividualFiles.length\n ? `${chalk.underline.white('components with individual files')}\\n${individualFilesDesc}\\n`\n : ''\n ).join('\\n');\n\n const stagedDesc = '\\n(use \"bit export to push these components to a remote scope\")\\n';\n const stagedComponentsOutput = immutableUnshift(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n stagedComponents.map((c) => format(c, true)),\n stagedComponents.length ? chalk.underline.white('staged components') + stagedDesc : ''\n ).join('\\n');\n\n const snappedDesc = '\\n(use \"bit tag --all [version]\" or \"bit tag --snapped [version]\" to lock a version)\\n';\n const snappedComponentsOutput = immutableUnshift(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n snappedComponents.map((c) => format(c, true)),\n snappedComponents.length ? chalk.underline.white('snapped components') + snappedDesc : ''\n ).join('\\n');\n\n const laneStr = laneName ? `\\non ${chalk.bold(laneName)} lane` : '';\n\n const troubleshootingStr = showTroubleshootingLink ? `\\n${TROUBLESHOOTING_MESSAGE}` : '';\n\n const statusMsg =\n importPendingWarning +\n [\n outdatedStr,\n pendingMergeStr,\n compWithConflictsStr,\n newComponentsOutput,\n modifiedComponentOutput,\n snappedComponentsOutput,\n stagedComponentsOutput,\n autoTagPendingOutput,\n invalidComponentOutput,\n individualFilesOutput,\n ]\n .filter((x) => x)\n .join(chalk.underline('\\n \\n') + chalk.white('\\n')) +\n troubleshootingStr;\n\n const results = (statusMsg || chalk.yellow(statusWorkspaceIsCleanMsg)) + laneStr;\n\n const exitCode = componentsWithIssues.length && strict ? 1 : 0;\n\n return {\n data: results,\n code: exitCode,\n };\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["individualFilesDesc","TROUBLESHOOTING_MESSAGE","chalk","yellow","BASE_DOCS_DOMAIN","StatusCmd","constructor","status","json","newComponents","modifiedComponent","stagedComponents","componentsWithIssues","importPendingComponents","autoTagPendingComponents","invalidComponents","outdatedComponents","mergePendingComponents","componentsDuringMergeState","componentsWithIndividualFiles","softTaggedComponents","snappedComponents","map","c","id","toString","issues","toObject","s","report","_args","strict","verbose","laneName","showTroubleshootingLink","format","component","showVersions","message","getBitId","BitId","Component","ModelComponent","toBitId","Error","bitId","find","compWithIssue","isEqual","softTagged","softTaggedId","messageStatusText","messageStatusTextWithSoftTag","color","messageStatus","formatBitString","toStringWithoutVersion","bitFormatted","formatNewBit","localVersions","getLocalTagsOrHashes","join","snaps","tags","partition","version","isHash","tagsStr","length","snapsStr","red","statusFailureMsg","formatIssues","importPendingWarning","IMPORT_PENDING_MSG","splitByMissing","R","groupBy","includes","missing","nonMissing","outdatedTitle","underline","white","outdatedDesc","outdatedComps","cyan","latestVersion","outdatedStr","pendingMergeTitle","pendingMergeDesc","pendingMergeComps","diverge","snapsOnLocalOnly","snapsOnRemoteOnly","pendingMergeStr","compWithConflictsTitle","compWithConflictsDesc","compWithConflictsComps","compWithConflictsStr","newComponentDescription","newComponentsTitle","newComponentsOutput","modifiedDesc","modifiedComponentOutput","immutableUnshift","autoTagPendingOutput","invalidDesc","invalidComponentOutput","getInvalidComponentLabel","error","sort","statusInvalidComponentsMsg","individualFilesOutput","stagedDesc","stagedComponentsOutput","snappedDesc","snappedComponentsOutput","laneStr","bold","troubleshootingStr","statusMsg","filter","x","results","statusWorkspaceIsCleanMsg","exitCode","data","code"],"sources":["status-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { BitId } from '@teambit/legacy-bit-id';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { immutableUnshift } from '@teambit/legacy/dist/utils';\nimport { formatBitString, formatNewBit } from '@teambit/legacy/dist/cli/chalk-box';\nimport { getInvalidComponentLabel, formatIssues } from '@teambit/legacy/dist/cli/templates/component-issues-template';\nimport { ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport {\n BASE_DOCS_DOMAIN,\n IMPORT_PENDING_MSG,\n statusFailureMsg,\n statusInvalidComponentsMsg,\n statusWorkspaceIsCleanMsg,\n} from '@teambit/legacy/dist/constants';\nimport { partition } from 'lodash';\nimport { isHash } from '@teambit/component-version';\nimport { StatusMain, StatusResult } from './status.main.runtime';\n\nconst individualFilesDesc = `these components were added as individual files and not as directories, which are invalid in Harmony\nplease make sure each component has its own directory and re-add it. alternatively, use \"bit move --component\" to help with the move.`;\nconst TROUBLESHOOTING_MESSAGE = `${chalk.yellow(\n `learn more at https://${BASE_DOCS_DOMAIN}/components/adding-components`\n)}`;\n\nexport class StatusCmd implements Command {\n name = 'status';\n description = 'present the current status of components in the workspace, and notifies when issues are detected';\n group = 'development';\n extendedDescription: string;\n alias = 's';\n options = [\n ['j', 'json', 'return a json version of the component'],\n ['', 'verbose', 'show full snap hashes'],\n ['', 'strict', 'in case issues found, exit with code 1'],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private status: StatusMain) {}\n\n async json() {\n const {\n newComponents,\n modifiedComponent,\n stagedComponents,\n componentsWithIssues,\n importPendingComponents,\n autoTagPendingComponents,\n invalidComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n }: StatusResult = await this.status.status();\n return {\n newComponents,\n modifiedComponent: modifiedComponent.map((c) => c.id.toString()),\n stagedComponents: stagedComponents.map((c) => c.id()),\n componentsWithIssues: componentsWithIssues.map((c) => ({\n id: c.id.toString(),\n issues: c.issues?.toObject(),\n })),\n importPendingComponents: importPendingComponents.map((id) => id.toString()),\n autoTagPendingComponents: autoTagPendingComponents.map((s) => s.toString()),\n invalidComponents,\n outdatedComponents: outdatedComponents.map((c) => c.id.toString()),\n mergePendingComponents: mergePendingComponents.map((c) => c.id.toString()),\n componentsDuringMergeState: componentsDuringMergeState.map((id) => id.toString()),\n componentsWithIndividualFiles: componentsWithIndividualFiles.map((c) => c.id.toString()),\n softTaggedComponents: softTaggedComponents.map((s) => s.toString()),\n snappedComponents: snappedComponents.map((s) => s.toString()),\n };\n }\n\n async report(_args, { strict, verbose }: { strict?: boolean; verbose?: boolean }) {\n const {\n newComponents,\n modifiedComponent,\n stagedComponents,\n componentsWithIssues,\n importPendingComponents,\n autoTagPendingComponents,\n invalidComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n laneName,\n }: StatusResult = await this.status.status();\n // If there is problem with at least one component we want to show a link to the\n // troubleshooting doc\n let showTroubleshootingLink = false;\n\n function format(component: BitId | Component | ModelComponent, showVersions = false, message?: string): string {\n const getBitId = () => {\n if (component instanceof BitId) return component;\n if (component instanceof Component) return component.id;\n if (component instanceof ModelComponent) return component.toBitId();\n throw new Error(`type of component ${component} is not supported`);\n };\n const bitId = getBitId();\n const issues = componentsWithIssues.find((compWithIssue: Component) => compWithIssue.id.isEqual(bitId));\n const softTagged = softTaggedComponents.find((softTaggedId) => softTaggedId.isEqual(bitId));\n\n const messageStatusText = message || 'ok';\n const messageStatusTextWithSoftTag = softTagged ? `${messageStatusText} (soft-tagged)` : messageStatusText;\n const color = message ? 'yellow' : 'green';\n const messageStatus = chalk[color](messageStatusTextWithSoftTag);\n\n if (component instanceof BitId) {\n return `${formatBitString(component.toStringWithoutVersion())} ... ${messageStatus}`;\n }\n let bitFormatted = `${formatNewBit(component)}`;\n if (showVersions) {\n if (!(component instanceof ModelComponent)) {\n throw new Error(`expect \"${component}\" to be instance of ModelComponent`);\n }\n const localVersions = component.getLocalTagsOrHashes();\n if (verbose) {\n bitFormatted += `. versions: ${localVersions.join(', ')}`;\n } else {\n const [snaps, tags] = partition(localVersions, (version) => isHash(version));\n const tagsStr = tags.length ? `versions: ${tags.join(', ')}` : '';\n const snapsStr = snaps.length ? `${snaps.length} snap(s)` : '';\n bitFormatted += `. `;\n bitFormatted += tagsStr && snapsStr ? `${tagsStr}. and ${snapsStr}` : tagsStr || snapsStr;\n }\n }\n bitFormatted += ' ... ';\n if (!issues) return `${bitFormatted}${messageStatus}`;\n showTroubleshootingLink = true;\n return `${bitFormatted} ${chalk.red(statusFailureMsg)}${formatIssues(issues)}`;\n }\n\n const importPendingWarning = importPendingComponents.length ? chalk.yellow(`${IMPORT_PENDING_MSG}.\\n`) : '';\n\n const splitByMissing = R.groupBy((component) => {\n return component.includes(statusFailureMsg) ? 'missing' : 'nonMissing';\n });\n const { missing, nonMissing } = splitByMissing(newComponents.map((c) => format(c)));\n\n const outdatedTitle = chalk.underline.white('pending updates');\n const outdatedDesc =\n '(use \"bit checkout [version] [component_id]\" to merge changes)\\n(use \"bit diff [component_id] [new_version]\" to compare changes)\\n(use \"bit log [component_id]\" to list all available versions)\\n';\n const outdatedComps = outdatedComponents\n .map((component) => {\n return ` > ${chalk.cyan(component.id.toStringWithoutVersion())} current: ${component.id.version} latest: ${\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.latestVersion\n }\\n`;\n })\n .join('');\n\n const outdatedStr = outdatedComponents.length ? [outdatedTitle, outdatedDesc, outdatedComps].join('\\n') : '';\n\n const pendingMergeTitle = chalk.underline.white('pending merge');\n const pendingMergeDesc = `(use \"bit untag\" to add local changes on top of the remote and discard local tags.\nalternatively, to keep local tags/snaps history, use \"bit merge <remote-name>/<lane-name> [component-id]\")\\n`;\n const pendingMergeComps = mergePendingComponents\n .map((component) => {\n return ` > ${chalk.cyan(component.id.toString())} local and remote have diverged and have ${\n component.diverge.snapsOnLocalOnly.length\n } and ${component.diverge.snapsOnRemoteOnly.length} different snaps each, respectively\\n`;\n })\n .join('');\n\n const pendingMergeStr = pendingMergeComps.length\n ? [pendingMergeTitle, pendingMergeDesc, pendingMergeComps].join('\\n')\n : '';\n\n const compWithConflictsTitle = chalk.underline.white('components during merge state');\n const compWithConflictsDesc = `(use \"bit merge [component-id] --resolve\" to mark them as resolved and snap the changes\nor use \"bit merge [component-id] --abort\" to cancel the merge operation)\\n`;\n const compWithConflictsComps = componentsDuringMergeState\n .map((id) => {\n return ` > ${chalk.cyan(id.toString())}`;\n })\n .join('');\n\n const compWithConflictsStr = compWithConflictsComps.length\n ? [compWithConflictsTitle, compWithConflictsDesc, compWithConflictsComps].join('\\n')\n : '';\n\n const newComponentDescription = '\\n(use \"bit tag --all [version]\" to lock a version with all your changes)\\n';\n const newComponentsTitle = newComponents.length\n ? chalk.underline.white('new components') + newComponentDescription\n : '';\n\n const newComponentsOutput = [newComponentsTitle, ...(nonMissing || []), ...(missing || [])].join('\\n');\n\n const modifiedDesc = '(use \"bit diff\" to compare changes)\\n';\n const modifiedComponentOutput = immutableUnshift(\n modifiedComponent.map((c) => format(c)),\n modifiedComponent.length\n ? chalk.underline.white('modified components') + newComponentDescription + modifiedDesc\n : ''\n ).join('\\n');\n\n const autoTagPendingOutput = immutableUnshift(\n autoTagPendingComponents.map((c) => format(c)),\n autoTagPendingComponents.length\n ? chalk.underline.white('components pending to be tagged automatically (when their dependencies are tagged)')\n : ''\n ).join('\\n');\n\n const invalidDesc = '\\nthese components were failed to load.\\n';\n const invalidComponentOutput = immutableUnshift(\n invalidComponents.map((c) => format(c.id, true, getInvalidComponentLabel(c.error))).sort(),\n invalidComponents.length ? chalk.underline.white(statusInvalidComponentsMsg) + invalidDesc : ''\n ).join('\\n');\n\n const individualFilesOutput = immutableUnshift(\n componentsWithIndividualFiles.map((c) => format(c.id, false, 'individual files')).sort(),\n componentsWithIndividualFiles.length\n ? `${chalk.underline.white('components with individual files')}\\n${individualFilesDesc}\\n`\n : ''\n ).join('\\n');\n\n const stagedDesc = '\\n(use \"bit export to push these components to a remote scope\")\\n';\n const stagedComponentsOutput = immutableUnshift(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n stagedComponents.map((c) => format(c, true)),\n stagedComponents.length ? chalk.underline.white('staged components') + stagedDesc : ''\n ).join('\\n');\n\n const snappedDesc = '\\n(use \"bit tag --all [version]\" or \"bit tag --snapped [version]\" to lock a version)\\n';\n const snappedComponentsOutput = immutableUnshift(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n snappedComponents.map((c) => format(c, true)),\n snappedComponents.length ? chalk.underline.white('snapped components') + snappedDesc : ''\n ).join('\\n');\n\n const laneStr = laneName ? `\\non ${chalk.bold(laneName)} lane` : '';\n\n const troubleshootingStr = showTroubleshootingLink ? `\\n${TROUBLESHOOTING_MESSAGE}` : '';\n\n const statusMsg =\n importPendingWarning +\n [\n outdatedStr,\n pendingMergeStr,\n compWithConflictsStr,\n newComponentsOutput,\n modifiedComponentOutput,\n snappedComponentsOutput,\n stagedComponentsOutput,\n autoTagPendingOutput,\n invalidComponentOutput,\n individualFilesOutput,\n ]\n .filter((x) => x)\n .join(chalk.underline('\\n \\n') + chalk.white('\\n')) +\n troubleshootingStr;\n\n const results = (statusMsg || chalk.yellow(statusWorkspaceIsCleanMsg)) + laneStr;\n\n const exitCode = componentsWithIssues.length && strict ? 1 : 0;\n\n return {\n data: results,\n code: exitCode,\n };\n }\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,27 +1,30 @@
1
1
  {
2
2
  "name": "@teambit/status",
3
- "version": "0.0.100",
3
+ "version": "0.0.103",
4
4
  "homepage": "https://bit.dev/teambit/component/status",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "status",
9
- "version": "0.0.100"
9
+ "version": "0.0.103"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
13
+ "lodash": "4.17.21",
13
14
  "ramda": "0.27.1",
14
15
  "@babel/runtime": "7.12.18",
15
16
  "core-js": "^3.0.0",
16
17
  "@teambit/harmony": "0.3.3",
17
- "@teambit/cli": "0.0.521",
18
+ "@teambit/cli": "0.0.524",
19
+ "@teambit/component-version": "0.0.395",
18
20
  "@teambit/legacy-bit-id": "0.0.399",
19
21
  "@teambit/component-issues": "0.0.57",
20
- "@teambit/insights": "0.0.788",
21
- "@teambit/issues": "0.0.96",
22
- "@teambit/workspace": "0.0.788"
22
+ "@teambit/insights": "0.0.791",
23
+ "@teambit/issues": "0.0.99",
24
+ "@teambit/workspace": "0.0.791"
23
25
  },
24
26
  "devDependencies": {
27
+ "@types/lodash": "4.14.165",
25
28
  "@types/mocha": "9.1.0",
26
29
  "@types/testing-library__jest-dom": "5.9.5",
27
30
  "@types/jest": "^26.0.0",
@@ -30,7 +33,7 @@
30
33
  "@types/node": "12.20.4"
31
34
  },
32
35
  "peerDependencies": {
33
- "@teambit/legacy": "1.0.303",
36
+ "@teambit/legacy": "1.0.306",
34
37
  "react-dom": "^16.8.0 || ^17.0.0",
35
38
  "react": "^16.8.0 || ^17.0.0"
36
39
  },