@teambit/status 0.0.142 → 0.0.143
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/status-cmd.d.ts +1 -0
- package/dist/status-cmd.js +6 -1
- package/dist/status-cmd.js.map +1 -1
- package/dist/status.main.runtime.d.ts +12 -2
- package/dist/status.main.runtime.js +28 -4
- package/dist/status.main.runtime.js.map +1 -1
- package/package-tar/teambit-status-0.0.143.tgz +0 -0
- package/package.json +8 -7
- /package/{preview-1661759589772.js → preview-1661830538885.js} +0 -0
- package/package-tar/teambit-status-0.0.142.tgz +0 -0
package/dist/status-cmd.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare class StatusCmd implements Command {
|
|
|
31
31
|
importPendingComponents: string[];
|
|
32
32
|
autoTagPendingComponents: string[];
|
|
33
33
|
invalidComponents: import("@teambit/legacy/dist/consumer/component/consumer-component").InvalidComponent[];
|
|
34
|
+
removedComponents: string[];
|
|
34
35
|
outdatedComponents: string[];
|
|
35
36
|
mergePendingComponents: string[];
|
|
36
37
|
componentsDuringMergeState: string[];
|
package/dist/status-cmd.js
CHANGED
|
@@ -159,6 +159,7 @@ class StatusCmd {
|
|
|
159
159
|
importPendingComponents,
|
|
160
160
|
autoTagPendingComponents,
|
|
161
161
|
invalidComponents,
|
|
162
|
+
removedComponents,
|
|
162
163
|
outdatedComponents,
|
|
163
164
|
mergePendingComponents,
|
|
164
165
|
componentsDuringMergeState,
|
|
@@ -185,6 +186,7 @@ class StatusCmd {
|
|
|
185
186
|
importPendingComponents: importPendingComponents.map(id => id.toString()),
|
|
186
187
|
autoTagPendingComponents: autoTagPendingComponents.map(s => s.toString()),
|
|
187
188
|
invalidComponents,
|
|
189
|
+
removedComponents: removedComponents.map(id => id.toString()),
|
|
188
190
|
outdatedComponents: outdatedComponents.map(c => c.id.toString()),
|
|
189
191
|
mergePendingComponents: mergePendingComponents.map(c => c.id.toString()),
|
|
190
192
|
componentsDuringMergeState: componentsDuringMergeState.map(id => id.toString()),
|
|
@@ -210,6 +212,7 @@ class StatusCmd {
|
|
|
210
212
|
importPendingComponents,
|
|
211
213
|
autoTagPendingComponents,
|
|
212
214
|
invalidComponents,
|
|
215
|
+
removedComponents,
|
|
213
216
|
outdatedComponents,
|
|
214
217
|
mergePendingComponents,
|
|
215
218
|
componentsDuringMergeState,
|
|
@@ -315,6 +318,8 @@ or use "bit merge [component-id] --abort" to cancel the merge operation)\n`;
|
|
|
315
318
|
const autoTagPendingOutput = (0, _utils().immutableUnshift)(autoTagPendingComponents.map(c => format(c)), autoTagPendingComponents.length ? _chalk().default.underline.white('components pending to be tagged automatically (when their dependencies are tagged)') : '').join('\n');
|
|
316
319
|
const invalidDesc = '\nthese components were failed to load.\n';
|
|
317
320
|
const invalidComponentOutput = (0, _utils().immutableUnshift)(invalidComponents.map(c => format(c.id, true, (0, _componentIssuesTemplate().getInvalidComponentLabel)(c.error))).sort(), invalidComponents.length ? _chalk().default.underline.white(_constants().statusInvalidComponentsMsg) + invalidDesc : '').join('\n');
|
|
321
|
+
const removedDesc = '\nthese components were soft-removed.\n';
|
|
322
|
+
const removedComponentOutput = (0, _utils().immutableUnshift)(removedComponents.map(c => format(c)).sort(), removedComponents.length ? _chalk().default.underline.white('removed components') + removedDesc : '').join('\n');
|
|
318
323
|
const individualFilesOutput = (0, _utils().immutableUnshift)(componentsWithIndividualFiles.map(c => format(c.id, false, 'individual files')).sort(), componentsWithIndividualFiles.length ? `${_chalk().default.underline.white('components with individual files')}\n${individualFilesDesc}\n` : '').join('\n');
|
|
319
324
|
const stagedDesc = '\n(use "bit export" to push these components to a remote scope)\n';
|
|
320
325
|
const stagedComponentsOutput = (0, _utils().immutableUnshift)( // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
@@ -341,7 +346,7 @@ or use "bit merge [component-id] --abort" to cancel the merge operation)\n`;
|
|
|
341
346
|
const updatesFromMainOutput = (0, _utils().immutableUnshift)(pendingUpdatesFromMainIds, pendingUpdatesFromMain.length ? _chalk().default.underline.white('pending updates from main') + updatesFromMainDesc : '').join('\n');
|
|
342
347
|
const laneStr = laneName ? `\non ${_chalk().default.bold(laneName)} lane` : '';
|
|
343
348
|
const troubleshootingStr = showTroubleshootingLink ? `\n${TROUBLESHOOTING_MESSAGE}` : '';
|
|
344
|
-
const statusMsg = importPendingWarning + [outdatedStr, pendingMergeStr, updatesFromMainOutput, compWithConflictsStr, newComponentsOutput, modifiedComponentOutput, snappedComponentsOutput, stagedComponentsOutput, autoTagPendingOutput, invalidComponentOutput, individualFilesOutput].filter(x => x).join(_chalk().default.underline('\n \n') + _chalk().default.white('\n')) + troubleshootingStr;
|
|
349
|
+
const statusMsg = importPendingWarning + [outdatedStr, pendingMergeStr, updatesFromMainOutput, compWithConflictsStr, newComponentsOutput, modifiedComponentOutput, snappedComponentsOutput, stagedComponentsOutput, autoTagPendingOutput, invalidComponentOutput, removedComponentOutput, individualFilesOutput].filter(x => x).join(_chalk().default.underline('\n \n') + _chalk().default.white('\n')) + troubleshootingStr;
|
|
345
350
|
const results = (statusMsg || _chalk().default.yellow(_constants().statusWorkspaceIsCleanMsg)) + laneStr;
|
|
346
351
|
const exitCode = componentsWithIssues.length && strict ? 1 : 0;
|
|
347
352
|
return {
|
package/dist/status-cmd.js.map
CHANGED
|
@@ -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","pendingUpdatesFromMain","map","c","id","toString","versions","getLocalTagsOrHashes","issues","toObject","s","p","divergeData","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","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","getUpdateFromMainMsg","err","msg","commonSnapBeforeDiverge","toShortString","updatesFromMainDesc","pendingUpdatesFromMainIds","updatesFromMainOutput","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 { DivergeData } from '@teambit/legacy/dist/scope/component-ops/diverge-data';\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 pendingUpdatesFromMain,\n }: StatusResult = await this.status.status();\n return {\n newComponents,\n modifiedComponent: modifiedComponent.map((c) => c.id.toString()),\n stagedComponents: stagedComponents.map((c) => ({ id: c.id(), versions: c.getLocalTagsOrHashes() })),\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 pendingUpdatesFromMain: pendingUpdatesFromMain.map((p) => ({ id: p.id.toString(), divergeData: p.divergeData })),\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 pendingUpdatesFromMain,\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 head\" 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 reset\" 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 snap/tag [--unmerged]\" to complete the merge process\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\n const compWithConflictsStr = compWithConflictsComps.length\n ? [compWithConflictsTitle, compWithConflictsDesc, compWithConflictsComps].join('\\n')\n : '';\n\n const newComponentDescription = '\\n(use \"bit tag [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 [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 getUpdateFromMainMsg = (divergeData: DivergeData): string => {\n if (divergeData.err) return divergeData.err.message;\n let msg = `main is ahead by ${divergeData.snapsOnRemoteOnly.length || 0} snaps`;\n if (divergeData.snapsOnLocalOnly && verbose) {\n msg += ` (diverged since ${divergeData.commonSnapBeforeDiverge?.toShortString()})`;\n }\n return msg;\n };\n const updatesFromMainDesc = '\\n(EXPERIMENTAL. use \"bit lane merge main\" to merge the changes)\\n';\n const pendingUpdatesFromMainIds = pendingUpdatesFromMain.map((c) =>\n format(c.id, true, getUpdateFromMainMsg(c.divergeData))\n );\n const updatesFromMainOutput = immutableUnshift(\n pendingUpdatesFromMainIds,\n pendingUpdatesFromMain.length ? chalk.underline.white('pending updates from main') + updatesFromMainDesc : ''\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 updatesFromMainOutput,\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","removedComponents","outdatedComponents","mergePendingComponents","componentsDuringMergeState","componentsWithIndividualFiles","softTaggedComponents","snappedComponents","pendingUpdatesFromMain","map","c","id","toString","versions","getLocalTagsOrHashes","issues","toObject","s","p","divergeData","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","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","removedDesc","removedComponentOutput","individualFilesOutput","stagedDesc","stagedComponentsOutput","snappedDesc","snappedComponentsOutput","getUpdateFromMainMsg","err","msg","commonSnapBeforeDiverge","toShortString","updatesFromMainDesc","pendingUpdatesFromMainIds","updatesFromMainOutput","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 { DivergeData } from '@teambit/legacy/dist/scope/component-ops/diverge-data';\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 removedComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n pendingUpdatesFromMain,\n }: StatusResult = await this.status.status();\n return {\n newComponents,\n modifiedComponent: modifiedComponent.map((c) => c.id.toString()),\n stagedComponents: stagedComponents.map((c) => ({ id: c.id(), versions: c.getLocalTagsOrHashes() })),\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 removedComponents: removedComponents.map((id) => id.toString()),\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 pendingUpdatesFromMain: pendingUpdatesFromMain.map((p) => ({ id: p.id.toString(), divergeData: p.divergeData })),\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 removedComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles,\n softTaggedComponents,\n snappedComponents,\n pendingUpdatesFromMain,\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 head\" 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 reset\" 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 snap/tag [--unmerged]\" to complete the merge process\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\n const compWithConflictsStr = compWithConflictsComps.length\n ? [compWithConflictsTitle, compWithConflictsDesc, compWithConflictsComps].join('\\n')\n : '';\n\n const newComponentDescription = '\\n(use \"bit tag [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 removedDesc = '\\nthese components were soft-removed.\\n';\n const removedComponentOutput = immutableUnshift(\n removedComponents.map((c) => format(c)).sort(),\n removedComponents.length ? chalk.underline.white('removed components') + removedDesc : ''\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 [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 getUpdateFromMainMsg = (divergeData: DivergeData): string => {\n if (divergeData.err) return divergeData.err.message;\n let msg = `main is ahead by ${divergeData.snapsOnRemoteOnly.length || 0} snaps`;\n if (divergeData.snapsOnLocalOnly && verbose) {\n msg += ` (diverged since ${divergeData.commonSnapBeforeDiverge?.toShortString()})`;\n }\n return msg;\n };\n const updatesFromMainDesc = '\\n(EXPERIMENTAL. use \"bit lane merge main\" to merge the changes)\\n';\n const pendingUpdatesFromMainIds = pendingUpdatesFromMain.map((c) =>\n format(c.id, true, getUpdateFromMainMsg(c.divergeData))\n );\n const updatesFromMainOutput = immutableUnshift(\n pendingUpdatesFromMainIds,\n pendingUpdatesFromMain.length ? chalk.underline.white('pending updates from main') + updatesFromMainDesc : ''\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 updatesFromMainOutput,\n compWithConflictsStr,\n newComponentsOutput,\n modifiedComponentOutput,\n snappedComponentsOutput,\n stagedComponentsOutput,\n autoTagPendingOutput,\n invalidComponentOutput,\n removedComponentOutput,\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,6 +1,7 @@
|
|
|
1
1
|
import { CLIMain } from '@teambit/cli';
|
|
2
2
|
import { Workspace } from '@teambit/workspace';
|
|
3
3
|
import { BitId, BitIds } from '@teambit/legacy/dist/bit-id';
|
|
4
|
+
import { RemoveMain } from '@teambit/remove';
|
|
4
5
|
import ConsumerComponent from '@teambit/legacy/dist/consumer/component';
|
|
5
6
|
import { DivergeDataPerId, DivergedComponent } from '@teambit/legacy/dist/consumer/component/components-list';
|
|
6
7
|
import { InvalidComponent } from '@teambit/legacy/dist/consumer/component/consumer-component';
|
|
@@ -15,6 +16,7 @@ export declare type StatusResult = {
|
|
|
15
16
|
importPendingComponents: BitId[];
|
|
16
17
|
autoTagPendingComponents: BitId[];
|
|
17
18
|
invalidComponents: InvalidComponent[];
|
|
19
|
+
removedComponents: BitId[];
|
|
18
20
|
outdatedComponents: ConsumerComponent[];
|
|
19
21
|
mergePendingComponents: DivergedComponent[];
|
|
20
22
|
componentsDuringMergeState: BitIds;
|
|
@@ -28,10 +30,18 @@ export declare class StatusMain {
|
|
|
28
30
|
private workspace;
|
|
29
31
|
private issues;
|
|
30
32
|
private insights;
|
|
31
|
-
|
|
33
|
+
private remove;
|
|
34
|
+
constructor(workspace: Workspace, issues: IssuesMain, insights: InsightsMain, remove: RemoveMain);
|
|
32
35
|
status(): Promise<StatusResult>;
|
|
36
|
+
private addRemovedStagedIfNeeded;
|
|
33
37
|
static slots: never[];
|
|
34
38
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
35
39
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
36
|
-
static provider([cli, workspace, insights, issues
|
|
40
|
+
static provider([cli, workspace, insights, issues, remove]: [
|
|
41
|
+
CLIMain,
|
|
42
|
+
Workspace,
|
|
43
|
+
InsightsMain,
|
|
44
|
+
IssuesMain,
|
|
45
|
+
RemoveMain
|
|
46
|
+
]): Promise<StatusMain>;
|
|
37
47
|
}
|
|
@@ -81,6 +81,16 @@ function _loaderMessages() {
|
|
|
81
81
|
return data;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
function _remove() {
|
|
85
|
+
const data = require("@teambit/remove");
|
|
86
|
+
|
|
87
|
+
_remove = function () {
|
|
88
|
+
return data;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
return data;
|
|
92
|
+
}
|
|
93
|
+
|
|
84
94
|
function _componentsPendingImport() {
|
|
85
95
|
const data = _interopRequireDefault(require("@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-import"));
|
|
86
96
|
|
|
@@ -152,10 +162,11 @@ function _status() {
|
|
|
152
162
|
}
|
|
153
163
|
|
|
154
164
|
class StatusMain {
|
|
155
|
-
constructor(workspace, issues, insights) {
|
|
165
|
+
constructor(workspace, issues, insights, remove) {
|
|
156
166
|
this.workspace = workspace;
|
|
157
167
|
this.issues = issues;
|
|
158
168
|
this.insights = insights;
|
|
169
|
+
this.remove = remove;
|
|
159
170
|
}
|
|
160
171
|
|
|
161
172
|
async status() {
|
|
@@ -173,9 +184,11 @@ class StatusMain {
|
|
|
173
184
|
const newComponents = await componentsList.listNewComponents(true, loadOpts);
|
|
174
185
|
const modifiedComponent = await componentsList.listModifiedComponents(true, loadOpts);
|
|
175
186
|
const stagedComponents = await componentsList.listExportPendingComponents(laneObj);
|
|
187
|
+
await this.addRemovedStagedIfNeeded(stagedComponents);
|
|
176
188
|
const autoTagPendingComponents = await componentsList.listAutoTagPendingComponents();
|
|
177
189
|
const autoTagPendingComponentsIds = autoTagPendingComponents.map(component => component.id);
|
|
178
190
|
const allInvalidComponents = await componentsList.listInvalidComponents();
|
|
191
|
+
const removedComponents = await componentsList.listRemovedComponents();
|
|
179
192
|
const importPendingComponents = allInvalidComponents // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
180
193
|
.filter(c => c.error instanceof _componentsPendingImport().default) // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
181
194
|
.map(i => i.id); // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
@@ -229,6 +242,7 @@ class StatusMain {
|
|
|
229
242
|
autoTagPendingComponents: _componentsList().default.sortComponentsByName(autoTagPendingComponentsIds),
|
|
230
243
|
// @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
231
244
|
invalidComponents,
|
|
245
|
+
removedComponents,
|
|
232
246
|
outdatedComponents,
|
|
233
247
|
mergePendingComponents,
|
|
234
248
|
componentsDuringMergeState,
|
|
@@ -240,8 +254,18 @@ class StatusMain {
|
|
|
240
254
|
};
|
|
241
255
|
}
|
|
242
256
|
|
|
243
|
-
|
|
244
|
-
const
|
|
257
|
+
async addRemovedStagedIfNeeded(stagedComponents) {
|
|
258
|
+
const removedStagedIds = await this.remove.getRemovedStaged();
|
|
259
|
+
if (!removedStagedIds.length) return;
|
|
260
|
+
const removedStagedBitIds = removedStagedIds.map(id => id._legacy);
|
|
261
|
+
const nonExistsInStaged = removedStagedBitIds.filter(id => !stagedComponents.find(c => c.toBitId().isEqualWithoutVersion(id)));
|
|
262
|
+
if (!nonExistsInStaged.length) return;
|
|
263
|
+
const modelComps = await Promise.all(nonExistsInStaged.map(id => this.workspace.scope.legacyScope.getModelComponent(id)));
|
|
264
|
+
stagedComponents.push(...modelComps);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
static async provider([cli, workspace, insights, issues, remove]) {
|
|
268
|
+
const statusMain = new StatusMain(workspace, issues, insights, remove);
|
|
245
269
|
cli.register(new (_statusCmd().StatusCmd)(statusMain));
|
|
246
270
|
return statusMain;
|
|
247
271
|
}
|
|
@@ -250,7 +274,7 @@ class StatusMain {
|
|
|
250
274
|
|
|
251
275
|
exports.StatusMain = StatusMain;
|
|
252
276
|
(0, _defineProperty2().default)(StatusMain, "slots", []);
|
|
253
|
-
(0, _defineProperty2().default)(StatusMain, "dependencies", [_cli().CLIAspect, _workspace().default, _insights().InsightsAspect, _issues().default]);
|
|
277
|
+
(0, _defineProperty2().default)(StatusMain, "dependencies", [_cli().CLIAspect, _workspace().default, _insights().InsightsAspect, _issues().default, _remove().RemoveAspect]);
|
|
254
278
|
(0, _defineProperty2().default)(StatusMain, "runtime", _cli().MainRuntime);
|
|
255
279
|
|
|
256
280
|
_status().StatusAspect.addRuntime(StatusMain);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["StatusMain","constructor","workspace","issues","insights","status","ConsumerNotFound","loader","start","BEFORE_STATUS","consumer","laneObj","getCurrentLaneObject","componentsList","ComponentsList","loadOpts","loadDocs","loadCompositions","newComponents","listNewComponents","modifiedComponent","listModifiedComponents","stagedComponents","listExportPendingComponents","autoTagPendingComponents","listAutoTagPendingComponents","autoTagPendingComponentsIds","map","component","id","allInvalidComponents","listInvalidComponents","importPendingComponents","filter","c","error","ComponentsPendingImport","i","invalidComponents","outdatedComponents","listOutdatedComponents","mergePendingComponents","listMergePendingComponents","newAndModifiedLegacy","concat","issuesToIgnore","getIssuesToIgnoreGlobally","length","newAndModified","getManyByLegacy","includes","IssuesClasses","CircularDependencies","name","addInsightsAsComponentIssues","removeIgnoredIssuesFromComponents","componentsWithIssues","isEmpty","componentsDuringMergeState","listDuringMergeStateComponents","softTaggedComponents","listSoftTaggedComponents","snappedComponents","listSnappedComponentsOnMain","toBitId","pendingUpdatesFromMain","listUpdatesFromMainPending","currentLane","getCurrentLaneId","laneName","isDefault","Analytics","setExtraData","onDestroy","sortComponentsByName","componentsWithIndividualFiles","listComponentsWithIndividualFiles","provider","cli","statusMain","register","StatusCmd","CLIAspect","WorkspaceAspect","InsightsAspect","IssuesAspect","MainRuntime","StatusAspect","addRuntime"],"sources":["status.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { IssuesClasses } from '@teambit/component-issues';\nimport WorkspaceAspect, { Workspace } from '@teambit/workspace';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_STATUS } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport ComponentsPendingImport from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-import';\nimport ComponentsList, {\n DivergeDataPerId,\n DivergedComponent,\n} from '@teambit/legacy/dist/consumer/component/components-list';\nimport { InvalidComponent } from '@teambit/legacy/dist/consumer/component/consumer-component';\nimport { ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport { ConsumerNotFound } from '@teambit/legacy/dist/consumer/exceptions';\nimport { InsightsAspect, InsightsMain } from '@teambit/insights';\nimport IssuesAspect, { IssuesMain } from '@teambit/issues';\nimport { StatusCmd } from './status-cmd';\nimport { StatusAspect } from './status.aspect';\n\nexport type StatusResult = {\n newComponents: ConsumerComponent[];\n modifiedComponent: ConsumerComponent[];\n stagedComponents: ModelComponent[];\n componentsWithIssues: ConsumerComponent[];\n importPendingComponents: BitId[];\n autoTagPendingComponents: BitId[];\n invalidComponents: InvalidComponent[];\n outdatedComponents: ConsumerComponent[];\n mergePendingComponents: DivergedComponent[];\n componentsDuringMergeState: BitIds;\n componentsWithIndividualFiles: ConsumerComponent[];\n softTaggedComponents: BitId[];\n snappedComponents: BitId[];\n pendingUpdatesFromMain: DivergeDataPerId[];\n laneName: string | null; // null if default\n};\n\nexport class StatusMain {\n constructor(private workspace: Workspace, private issues: IssuesMain, private insights: InsightsMain) {}\n\n async status(): Promise<StatusResult> {\n if (!this.workspace) throw new ConsumerNotFound();\n loader.start(BEFORE_STATUS);\n const consumer = this.workspace.consumer;\n const laneObj = await consumer.getCurrentLaneObject();\n const componentsList = new ComponentsList(consumer);\n const loadOpts = {\n loadDocs: false,\n loadCompositions: false,\n };\n const newComponents: ConsumerComponent[] = (await componentsList.listNewComponents(\n true,\n loadOpts\n )) as ConsumerComponent[];\n const modifiedComponent = (await componentsList.listModifiedComponents(true, loadOpts)) as ConsumerComponent[];\n const stagedComponents: ModelComponent[] = await componentsList.listExportPendingComponents(laneObj);\n const autoTagPendingComponents = await componentsList.listAutoTagPendingComponents();\n const autoTagPendingComponentsIds = autoTagPendingComponents.map((component) => component.id);\n const allInvalidComponents = await componentsList.listInvalidComponents();\n const importPendingComponents = allInvalidComponents\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n .filter((c) => c.error instanceof ComponentsPendingImport)\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n .map((i) => i.id);\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const invalidComponents = allInvalidComponents.filter((c) => !(c.error instanceof ComponentsPendingImport));\n const outdatedComponents = await componentsList.listOutdatedComponents();\n const mergePendingComponents = await componentsList.listMergePendingComponents();\n const newAndModifiedLegacy: ConsumerComponent[] = newComponents.concat(modifiedComponent);\n const issuesToIgnore = this.issues.getIssuesToIgnoreGlobally();\n if (newAndModifiedLegacy.length) {\n const newAndModified = await this.workspace.getManyByLegacy(newAndModifiedLegacy, loadOpts);\n if (!issuesToIgnore.includes(IssuesClasses.CircularDependencies.name)) {\n await this.insights.addInsightsAsComponentIssues(newAndModified);\n }\n this.issues.removeIgnoredIssuesFromComponents(newAndModified);\n }\n const componentsWithIssues = newAndModifiedLegacy.filter((component: ConsumerComponent) => {\n return component.issues && !component.issues.isEmpty();\n });\n const componentsDuringMergeState = componentsList.listDuringMergeStateComponents();\n const softTaggedComponents = componentsList.listSoftTaggedComponents();\n const snappedComponents = (await componentsList.listSnappedComponentsOnMain()).map((c) => c.toBitId());\n const pendingUpdatesFromMain = await componentsList.listUpdatesFromMainPending();\n const currentLane = consumer.getCurrentLaneId();\n const laneName = currentLane.isDefault() ? null : currentLane.name;\n Analytics.setExtraData('new_components', newComponents.length);\n Analytics.setExtraData('staged_components', stagedComponents.length);\n Analytics.setExtraData('num_components_with_missing_dependencies', componentsWithIssues.length);\n Analytics.setExtraData('autoTagPendingComponents', autoTagPendingComponents.length);\n Analytics.setExtraData('deleted', invalidComponents.length);\n await consumer.onDestroy();\n return {\n newComponents: ComponentsList.sortComponentsByName(newComponents),\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n modifiedComponent: ComponentsList.sortComponentsByName(modifiedComponent),\n stagedComponents: ComponentsList.sortComponentsByName(stagedComponents),\n componentsWithIssues, // no need to sort, we don't print it as is\n importPendingComponents, // no need to sort, we use only its length\n autoTagPendingComponents: ComponentsList.sortComponentsByName(autoTagPendingComponentsIds),\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n invalidComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles: await componentsList.listComponentsWithIndividualFiles(),\n softTaggedComponents,\n snappedComponents,\n pendingUpdatesFromMain,\n laneName,\n };\n }\n\n static slots = [];\n static dependencies = [CLIAspect, WorkspaceAspect, InsightsAspect, IssuesAspect];\n static runtime = MainRuntime;\n static async provider([cli, workspace, insights, issues]: [CLIMain, Workspace, InsightsMain, IssuesMain]) {\n const statusMain = new StatusMain(workspace, issues, insights);\n cli.register(new StatusCmd(statusMain));\n return statusMain;\n }\n}\n\nStatusAspect.addRuntime(StatusMain);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAEA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAEA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAMA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAoBO,MAAMA,UAAN,CAAiB;EACtBC,WAAW,CAASC,SAAT,EAAuCC,MAAvC,EAAmEC,QAAnE,EAA2F;IAAA,KAAlFF,SAAkF,GAAlFA,SAAkF;IAAA,KAApDC,MAAoD,GAApDA,MAAoD;IAAA,KAAxBC,QAAwB,GAAxBA,QAAwB;EAAE;;EAE5F,MAANC,MAAM,GAA0B;IACpC,IAAI,CAAC,KAAKH,SAAV,EAAqB,MAAM,KAAII,8BAAJ,GAAN;;IACrBC,iBAAA,CAAOC,KAAP,CAAaC,+BAAb;;IACA,MAAMC,QAAQ,GAAG,KAAKR,SAAL,CAAeQ,QAAhC;IACA,MAAMC,OAAO,GAAG,MAAMD,QAAQ,CAACE,oBAAT,EAAtB;IACA,MAAMC,cAAc,GAAG,KAAIC,yBAAJ,EAAmBJ,QAAnB,CAAvB;IACA,MAAMK,QAAQ,GAAG;MACfC,QAAQ,EAAE,KADK;MAEfC,gBAAgB,EAAE;IAFH,CAAjB;IAIA,MAAMC,aAAkC,GAAI,MAAML,cAAc,CAACM,iBAAf,CAChD,IADgD,EAEhDJ,QAFgD,CAAlD;IAIA,MAAMK,iBAAiB,GAAI,MAAMP,cAAc,CAACQ,sBAAf,CAAsC,IAAtC,EAA4CN,QAA5C,CAAjC;IACA,MAAMO,gBAAkC,GAAG,MAAMT,cAAc,CAACU,2BAAf,CAA2CZ,OAA3C,CAAjD;IACA,MAAMa,wBAAwB,GAAG,MAAMX,cAAc,CAACY,4BAAf,EAAvC;IACA,MAAMC,2BAA2B,GAAGF,wBAAwB,CAACG,GAAzB,CAA8BC,SAAD,IAAeA,SAAS,CAACC,EAAtD,CAApC;IACA,MAAMC,oBAAoB,GAAG,MAAMjB,cAAc,CAACkB,qBAAf,EAAnC;IACA,MAAMC,uBAAuB,GAAGF,oBAAoB,CAClD;IADkD,CAEjDG,MAF6B,CAErBC,CAAD,IAAOA,CAAC,CAACC,KAAF,YAAmBC,kCAFJ,EAG9B;IAH8B,CAI7BT,GAJ6B,CAIxBU,CAAD,IAAOA,CAAC,CAACR,EAJgB,CAAhC,CAnBoC,CAwBpC;;IACA,MAAMS,iBAAiB,GAAGR,oBAAoB,CAACG,MAArB,CAA6BC,CAAD,IAAO,EAAEA,CAAC,CAACC,KAAF,YAAmBC,kCAArB,CAAnC,CAA1B;IACA,MAAMG,kBAAkB,GAAG,MAAM1B,cAAc,CAAC2B,sBAAf,EAAjC;IACA,MAAMC,sBAAsB,GAAG,MAAM5B,cAAc,CAAC6B,0BAAf,EAArC;IACA,MAAMC,oBAAyC,GAAGzB,aAAa,CAAC0B,MAAd,CAAqBxB,iBAArB,CAAlD;IACA,MAAMyB,cAAc,GAAG,KAAK1C,MAAL,CAAY2C,yBAAZ,EAAvB;;IACA,IAAIH,oBAAoB,CAACI,MAAzB,EAAiC;MAC/B,MAAMC,cAAc,GAAG,MAAM,KAAK9C,SAAL,CAAe+C,eAAf,CAA+BN,oBAA/B,EAAqD5B,QAArD,CAA7B;;MACA,IAAI,CAAC8B,cAAc,CAACK,QAAf,CAAwBC,gCAAA,CAAcC,oBAAd,CAAmCC,IAA3D,CAAL,EAAuE;QACrE,MAAM,KAAKjD,QAAL,CAAckD,4BAAd,CAA2CN,cAA3C,CAAN;MACD;;MACD,KAAK7C,MAAL,CAAYoD,iCAAZ,CAA8CP,cAA9C;IACD;;IACD,MAAMQ,oBAAoB,GAAGb,oBAAoB,CAACV,MAArB,CAA6BL,SAAD,IAAkC;MACzF,OAAOA,SAAS,CAACzB,MAAV,IAAoB,CAACyB,SAAS,CAACzB,MAAV,CAAiBsD,OAAjB,EAA5B;IACD,CAF4B,CAA7B;IAGA,MAAMC,0BAA0B,GAAG7C,cAAc,CAAC8C,8BAAf,EAAnC;IACA,MAAMC,oBAAoB,GAAG/C,cAAc,CAACgD,wBAAf,EAA7B;IACA,MAAMC,iBAAiB,GAAG,CAAC,MAAMjD,cAAc,CAACkD,2BAAf,EAAP,EAAqDpC,GAArD,CAA0DO,CAAD,IAAOA,CAAC,CAAC8B,OAAF,EAAhE,CAA1B;IACA,MAAMC,sBAAsB,GAAG,MAAMpD,cAAc,CAACqD,0BAAf,EAArC;IACA,MAAMC,WAAW,GAAGzD,QAAQ,CAAC0D,gBAAT,EAApB;IACA,MAAMC,QAAQ,GAAGF,WAAW,CAACG,SAAZ,KAA0B,IAA1B,GAAiCH,WAAW,CAACd,IAA9D;;IACAkB,sBAAA,CAAUC,YAAV,CAAuB,gBAAvB,EAAyCtD,aAAa,CAAC6B,MAAvD;;IACAwB,sBAAA,CAAUC,YAAV,CAAuB,mBAAvB,EAA4ClD,gBAAgB,CAACyB,MAA7D;;IACAwB,sBAAA,CAAUC,YAAV,CAAuB,0CAAvB,EAAmEhB,oBAAoB,CAACT,MAAxF;;IACAwB,sBAAA,CAAUC,YAAV,CAAuB,0BAAvB,EAAmDhD,wBAAwB,CAACuB,MAA5E;;IACAwB,sBAAA,CAAUC,YAAV,CAAuB,SAAvB,EAAkClC,iBAAiB,CAACS,MAApD;;IACA,MAAMrC,QAAQ,CAAC+D,SAAT,EAAN;IACA,OAAO;MACLvD,aAAa,EAAEJ,yBAAA,CAAe4D,oBAAf,CAAoCxD,aAApC,CADV;MAEL;MACAE,iBAAiB,EAAEN,yBAAA,CAAe4D,oBAAf,CAAoCtD,iBAApC,CAHd;MAILE,gBAAgB,EAAER,yBAAA,CAAe4D,oBAAf,CAAoCpD,gBAApC,CAJb;MAKLkC,oBALK;MAKiB;MACtBxB,uBANK;MAMoB;MACzBR,wBAAwB,EAAEV,yBAAA,CAAe4D,oBAAf,CAAoChD,2BAApC,CAPrB;MAQL;MACAY,iBATK;MAULC,kBAVK;MAWLE,sBAXK;MAYLiB,0BAZK;MAaLiB,6BAA6B,EAAE,MAAM9D,cAAc,CAAC+D,iCAAf,EAbhC;MAcLhB,oBAdK;MAeLE,iBAfK;MAgBLG,sBAhBK;MAiBLI;IAjBK,CAAP;EAmBD;;EAKoB,aAARQ,QAAQ,CAAC,CAACC,GAAD,EAAM5E,SAAN,EAAiBE,QAAjB,EAA2BD,MAA3B,CAAD,EAAqF;IACxG,MAAM4E,UAAU,GAAG,IAAI/E,UAAJ,CAAeE,SAAf,EAA0BC,MAA1B,EAAkCC,QAAlC,CAAnB;IACA0E,GAAG,CAACE,QAAJ,CAAa,KAAIC,sBAAJ,EAAcF,UAAd,CAAb;IACA,OAAOA,UAAP;EACD;;AAnFqB;;;gCAAX/E,U,WA4EI,E;gCA5EJA,U,kBA6EW,CAACkF,gBAAD,EAAYC,oBAAZ,EAA6BC,0BAA7B,EAA6CC,iBAA7C,C;gCA7EXrF,U,aA8EMsF,kB;;AAQnBC,sBAAA,CAAaC,UAAb,CAAwBxF,UAAxB"}
|
|
1
|
+
{"version":3,"names":["StatusMain","constructor","workspace","issues","insights","remove","status","ConsumerNotFound","loader","start","BEFORE_STATUS","consumer","laneObj","getCurrentLaneObject","componentsList","ComponentsList","loadOpts","loadDocs","loadCompositions","newComponents","listNewComponents","modifiedComponent","listModifiedComponents","stagedComponents","listExportPendingComponents","addRemovedStagedIfNeeded","autoTagPendingComponents","listAutoTagPendingComponents","autoTagPendingComponentsIds","map","component","id","allInvalidComponents","listInvalidComponents","removedComponents","listRemovedComponents","importPendingComponents","filter","c","error","ComponentsPendingImport","i","invalidComponents","outdatedComponents","listOutdatedComponents","mergePendingComponents","listMergePendingComponents","newAndModifiedLegacy","concat","issuesToIgnore","getIssuesToIgnoreGlobally","length","newAndModified","getManyByLegacy","includes","IssuesClasses","CircularDependencies","name","addInsightsAsComponentIssues","removeIgnoredIssuesFromComponents","componentsWithIssues","isEmpty","componentsDuringMergeState","listDuringMergeStateComponents","softTaggedComponents","listSoftTaggedComponents","snappedComponents","listSnappedComponentsOnMain","toBitId","pendingUpdatesFromMain","listUpdatesFromMainPending","currentLane","getCurrentLaneId","laneName","isDefault","Analytics","setExtraData","onDestroy","sortComponentsByName","componentsWithIndividualFiles","listComponentsWithIndividualFiles","removedStagedIds","getRemovedStaged","removedStagedBitIds","_legacy","nonExistsInStaged","find","isEqualWithoutVersion","modelComps","Promise","all","scope","legacyScope","getModelComponent","push","provider","cli","statusMain","register","StatusCmd","CLIAspect","WorkspaceAspect","InsightsAspect","IssuesAspect","RemoveAspect","MainRuntime","StatusAspect","addRuntime"],"sources":["status.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { IssuesClasses } from '@teambit/component-issues';\nimport WorkspaceAspect, { Workspace } from '@teambit/workspace';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_STATUS } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport { RemoveAspect, RemoveMain } from '@teambit/remove';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport ComponentsPendingImport from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-import';\nimport ComponentsList, {\n DivergeDataPerId,\n DivergedComponent,\n} from '@teambit/legacy/dist/consumer/component/components-list';\nimport { InvalidComponent } from '@teambit/legacy/dist/consumer/component/consumer-component';\nimport { ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport { ConsumerNotFound } from '@teambit/legacy/dist/consumer/exceptions';\nimport { InsightsAspect, InsightsMain } from '@teambit/insights';\nimport IssuesAspect, { IssuesMain } from '@teambit/issues';\nimport { StatusCmd } from './status-cmd';\nimport { StatusAspect } from './status.aspect';\n\nexport type StatusResult = {\n newComponents: ConsumerComponent[];\n modifiedComponent: ConsumerComponent[];\n stagedComponents: ModelComponent[];\n componentsWithIssues: ConsumerComponent[];\n importPendingComponents: BitId[];\n autoTagPendingComponents: BitId[];\n invalidComponents: InvalidComponent[];\n removedComponents: BitId[];\n outdatedComponents: ConsumerComponent[];\n mergePendingComponents: DivergedComponent[];\n componentsDuringMergeState: BitIds;\n componentsWithIndividualFiles: ConsumerComponent[];\n softTaggedComponents: BitId[];\n snappedComponents: BitId[];\n pendingUpdatesFromMain: DivergeDataPerId[];\n laneName: string | null; // null if default\n};\n\nexport class StatusMain {\n constructor(\n private workspace: Workspace,\n private issues: IssuesMain,\n private insights: InsightsMain,\n private remove: RemoveMain\n ) {}\n\n async status(): Promise<StatusResult> {\n if (!this.workspace) throw new ConsumerNotFound();\n loader.start(BEFORE_STATUS);\n const consumer = this.workspace.consumer;\n const laneObj = await consumer.getCurrentLaneObject();\n const componentsList = new ComponentsList(consumer);\n const loadOpts = {\n loadDocs: false,\n loadCompositions: false,\n };\n const newComponents: ConsumerComponent[] = (await componentsList.listNewComponents(\n true,\n loadOpts\n )) as ConsumerComponent[];\n const modifiedComponent = (await componentsList.listModifiedComponents(true, loadOpts)) as ConsumerComponent[];\n const stagedComponents: ModelComponent[] = await componentsList.listExportPendingComponents(laneObj);\n await this.addRemovedStagedIfNeeded(stagedComponents);\n\n const autoTagPendingComponents = await componentsList.listAutoTagPendingComponents();\n const autoTagPendingComponentsIds = autoTagPendingComponents.map((component) => component.id);\n const allInvalidComponents = await componentsList.listInvalidComponents();\n const removedComponents = await componentsList.listRemovedComponents();\n const importPendingComponents = allInvalidComponents\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n .filter((c) => c.error instanceof ComponentsPendingImport)\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n .map((i) => i.id);\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const invalidComponents = allInvalidComponents.filter((c) => !(c.error instanceof ComponentsPendingImport));\n const outdatedComponents = await componentsList.listOutdatedComponents();\n const mergePendingComponents = await componentsList.listMergePendingComponents();\n const newAndModifiedLegacy: ConsumerComponent[] = newComponents.concat(modifiedComponent);\n const issuesToIgnore = this.issues.getIssuesToIgnoreGlobally();\n if (newAndModifiedLegacy.length) {\n const newAndModified = await this.workspace.getManyByLegacy(newAndModifiedLegacy, loadOpts);\n if (!issuesToIgnore.includes(IssuesClasses.CircularDependencies.name)) {\n await this.insights.addInsightsAsComponentIssues(newAndModified);\n }\n this.issues.removeIgnoredIssuesFromComponents(newAndModified);\n }\n const componentsWithIssues = newAndModifiedLegacy.filter((component: ConsumerComponent) => {\n return component.issues && !component.issues.isEmpty();\n });\n const componentsDuringMergeState = componentsList.listDuringMergeStateComponents();\n const softTaggedComponents = componentsList.listSoftTaggedComponents();\n const snappedComponents = (await componentsList.listSnappedComponentsOnMain()).map((c) => c.toBitId());\n const pendingUpdatesFromMain = await componentsList.listUpdatesFromMainPending();\n const currentLane = consumer.getCurrentLaneId();\n const laneName = currentLane.isDefault() ? null : currentLane.name;\n Analytics.setExtraData('new_components', newComponents.length);\n Analytics.setExtraData('staged_components', stagedComponents.length);\n Analytics.setExtraData('num_components_with_missing_dependencies', componentsWithIssues.length);\n Analytics.setExtraData('autoTagPendingComponents', autoTagPendingComponents.length);\n Analytics.setExtraData('deleted', invalidComponents.length);\n await consumer.onDestroy();\n return {\n newComponents: ComponentsList.sortComponentsByName(newComponents),\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n modifiedComponent: ComponentsList.sortComponentsByName(modifiedComponent),\n stagedComponents: ComponentsList.sortComponentsByName(stagedComponents),\n componentsWithIssues, // no need to sort, we don't print it as is\n importPendingComponents, // no need to sort, we use only its length\n autoTagPendingComponents: ComponentsList.sortComponentsByName(autoTagPendingComponentsIds),\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n invalidComponents,\n removedComponents,\n outdatedComponents,\n mergePendingComponents,\n componentsDuringMergeState,\n componentsWithIndividualFiles: await componentsList.listComponentsWithIndividualFiles(),\n softTaggedComponents,\n snappedComponents,\n pendingUpdatesFromMain,\n laneName,\n };\n }\n\n private async addRemovedStagedIfNeeded(stagedComponents: ModelComponent[]) {\n const removedStagedIds = await this.remove.getRemovedStaged();\n if (!removedStagedIds.length) return;\n const removedStagedBitIds = removedStagedIds.map((id) => id._legacy);\n const nonExistsInStaged = removedStagedBitIds.filter(\n (id) => !stagedComponents.find((c) => c.toBitId().isEqualWithoutVersion(id))\n );\n if (!nonExistsInStaged.length) return;\n const modelComps = await Promise.all(\n nonExistsInStaged.map((id) => this.workspace.scope.legacyScope.getModelComponent(id))\n );\n stagedComponents.push(...modelComps);\n }\n\n static slots = [];\n static dependencies = [CLIAspect, WorkspaceAspect, InsightsAspect, IssuesAspect, RemoveAspect];\n static runtime = MainRuntime;\n static async provider([cli, workspace, insights, issues, remove]: [\n CLIMain,\n Workspace,\n InsightsMain,\n IssuesMain,\n RemoveMain\n ]) {\n const statusMain = new StatusMain(workspace, issues, insights, remove);\n cli.register(new StatusCmd(statusMain));\n return statusMain;\n }\n}\n\nStatusAspect.addRuntime(StatusMain);\n"],"mappings":"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"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/status",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.143",
|
|
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.
|
|
9
|
+
"version": "0.0.143"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
"core-js": "^3.0.0",
|
|
17
17
|
"@teambit/component-version": "0.0.395",
|
|
18
18
|
"@teambit/harmony": "0.3.3",
|
|
19
|
-
"@teambit/cli": "0.0.
|
|
19
|
+
"@teambit/cli": "0.0.556",
|
|
20
20
|
"@teambit/legacy-bit-id": "0.0.402",
|
|
21
21
|
"@teambit/component-issues": "0.0.60",
|
|
22
|
-
"@teambit/insights": "0.0.
|
|
23
|
-
"@teambit/issues": "0.0.
|
|
24
|
-
"@teambit/
|
|
22
|
+
"@teambit/insights": "0.0.831",
|
|
23
|
+
"@teambit/issues": "0.0.139",
|
|
24
|
+
"@teambit/remove": "0.0.8",
|
|
25
|
+
"@teambit/workspace": "0.0.831"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
28
|
"@types/lodash": "4.14.165",
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
"@types/node": "12.20.4"
|
|
34
35
|
},
|
|
35
36
|
"peerDependencies": {
|
|
36
|
-
"@teambit/legacy": "1.0.
|
|
37
|
+
"@teambit/legacy": "1.0.339",
|
|
37
38
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
38
39
|
"react": "^16.8.0 || ^17.0.0"
|
|
39
40
|
},
|
|
File without changes
|
|
Binary file
|