@teambit/status 0.0.94 → 0.0.97
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 +0 -1
- package/dist/status-cmd.js +1 -7
- package/dist/status-cmd.js.map +1 -1
- package/dist/status.main.runtime.d.ts +0 -1
- package/dist/status.main.runtime.js +1 -6
- package/dist/status.main.runtime.js.map +1 -1
- package/package-tar/teambit-status-0.0.97.tgz +0 -0
- package/package.json +8 -37
- /package/{preview-1657164425299.js → preview-1657337177086.js} +0 -0
- package/package-tar/teambit-status-0.0.94.tgz +0 -0
package/dist/status-cmd.d.ts
CHANGED
|
@@ -31,7 +31,6 @@ export declare class StatusCmd implements Command {
|
|
|
31
31
|
mergePendingComponents: string[];
|
|
32
32
|
componentsDuringMergeState: string[];
|
|
33
33
|
componentsWithIndividualFiles: string[];
|
|
34
|
-
componentsWithTrackDirs: string[];
|
|
35
34
|
softTaggedComponents: string[];
|
|
36
35
|
snappedComponents: string[];
|
|
37
36
|
}>;
|
package/dist/status-cmd.js
CHANGED
|
@@ -116,8 +116,6 @@ function _constants() {
|
|
|
116
116
|
const individualFilesDesc = `these components were added as individual files and not as directories, which are invalid in Harmony
|
|
117
117
|
please make sure each component has its own directory and re-add it. alternatively, use "bit move --component" to help with the move.`;
|
|
118
118
|
const TROUBLESHOOTING_MESSAGE = `${_chalk().default.yellow(`learn more at https://${_constants().BASE_DOCS_DOMAIN}/components/adding-components`)}`;
|
|
119
|
-
const trackDirDesc = `these components were added by an older version of Bit and therefore have "trackDir" record in the .bitmap file
|
|
120
|
-
please run "bit migrate --harmony" to convert these records to "rootDir".`;
|
|
121
119
|
|
|
122
120
|
class StatusCmd {
|
|
123
121
|
constructor(status) {
|
|
@@ -145,7 +143,6 @@ class StatusCmd {
|
|
|
145
143
|
mergePendingComponents,
|
|
146
144
|
componentsDuringMergeState,
|
|
147
145
|
componentsWithIndividualFiles,
|
|
148
|
-
componentsWithTrackDirs,
|
|
149
146
|
softTaggedComponents,
|
|
150
147
|
snappedComponents
|
|
151
148
|
} = await this.status.status();
|
|
@@ -168,7 +165,6 @@ class StatusCmd {
|
|
|
168
165
|
mergePendingComponents: mergePendingComponents.map(c => c.id.toString()),
|
|
169
166
|
componentsDuringMergeState: componentsDuringMergeState.map(id => id.toString()),
|
|
170
167
|
componentsWithIndividualFiles: componentsWithIndividualFiles.map(c => c.id.toString()),
|
|
171
|
-
componentsWithTrackDirs: componentsWithTrackDirs.map(c => c.id.toString()),
|
|
172
168
|
softTaggedComponents: softTaggedComponents.map(s => s.toString()),
|
|
173
169
|
snappedComponents: snappedComponents.map(s => s.toString())
|
|
174
170
|
};
|
|
@@ -189,7 +185,6 @@ class StatusCmd {
|
|
|
189
185
|
mergePendingComponents,
|
|
190
186
|
componentsDuringMergeState,
|
|
191
187
|
componentsWithIndividualFiles,
|
|
192
|
-
componentsWithTrackDirs,
|
|
193
188
|
softTaggedComponents,
|
|
194
189
|
snappedComponents,
|
|
195
190
|
laneName
|
|
@@ -282,7 +277,6 @@ or use "bit merge [component-id] --abort" to cancel the merge operation)\n`;
|
|
|
282
277
|
const invalidDesc = '\nthese components were failed to load.\n';
|
|
283
278
|
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');
|
|
284
279
|
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');
|
|
285
|
-
const trackDirOutput = (0, _utils().immutableUnshift)(componentsWithTrackDirs.map(c => format(c.id, false, 'trackDir record')).sort(), componentsWithTrackDirs.length ? `${_chalk().default.underline.white('components with trackDir record')}\n${trackDirDesc}\n` : '').join('\n');
|
|
286
280
|
const stagedDesc = '\n(use "bit export to push these components to a remote scope")\n';
|
|
287
281
|
const stagedComponentsOutput = (0, _utils().immutableUnshift)( // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
|
|
288
282
|
stagedComponents.map(c => format(c, true)), stagedComponents.length ? _chalk().default.underline.white('staged components') + stagedDesc : '').join('\n');
|
|
@@ -291,7 +285,7 @@ or use "bit merge [component-id] --abort" to cancel the merge operation)\n`;
|
|
|
291
285
|
snappedComponents.map(c => format(c, true)), snappedComponents.length ? _chalk().default.underline.white('snapped components') + snappedDesc : '').join('\n');
|
|
292
286
|
const laneStr = laneName ? `\non ${_chalk().default.bold(laneName)} lane` : '';
|
|
293
287
|
const troubleshootingStr = showTroubleshootingLink ? `\n${TROUBLESHOOTING_MESSAGE}` : '';
|
|
294
|
-
const statusMsg = importPendingWarning + [outdatedStr, pendingMergeStr, compWithConflictsStr, newComponentsOutput, modifiedComponentOutput, snappedComponentsOutput, stagedComponentsOutput, autoTagPendingOutput, invalidComponentOutput, individualFilesOutput
|
|
288
|
+
const statusMsg = importPendingWarning + [outdatedStr, pendingMergeStr, compWithConflictsStr, newComponentsOutput, modifiedComponentOutput, snappedComponentsOutput, stagedComponentsOutput, autoTagPendingOutput, invalidComponentOutput, individualFilesOutput].filter(x => x).join(_chalk().default.underline('\n \n') + _chalk().default.white('\n')) + troubleshootingStr;
|
|
295
289
|
const results = (statusMsg || _chalk().default.yellow(_constants().statusWorkspaceIsCleanMsg)) + laneStr;
|
|
296
290
|
const exitCode = componentsWithIssues.length && strict ? 1 : 0;
|
|
297
291
|
return {
|
package/dist/status-cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["individualFilesDesc","TROUBLESHOOTING_MESSAGE","chalk","yellow","BASE_DOCS_DOMAIN","trackDirDesc","StatusCmd","constructor","status","json","newComponents","modifiedComponent","stagedComponents","componentsWithIssues","importPendingComponents","autoTagPendingComponents","invalidComponents","outdatedComponents","mergePendingComponents","componentsDuringMergeState","componentsWithIndividualFiles","componentsWithTrackDirs","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","trackDirOutput","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)}`;\nconst trackDirDesc = `these components were added by an older version of Bit and therefore have \"trackDir\" record in the .bitmap file\nplease run \"bit migrate --harmony\" to convert these records to \"rootDir\".`;\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 componentsWithTrackDirs,\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 componentsWithTrackDirs: componentsWithTrackDirs.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 componentsWithTrackDirs,\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 trackDirOutput = immutableUnshift(\n componentsWithTrackDirs.map((c) => format(c.id, false, 'trackDir record')).sort(),\n componentsWithTrackDirs.length\n ? `${chalk.underline.white('components with trackDir record')}\\n${trackDirDesc}\\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 trackDirOutput,\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","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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"}
|
|
@@ -19,7 +19,6 @@ export declare type StatusResult = {
|
|
|
19
19
|
mergePendingComponents: DivergedComponent[];
|
|
20
20
|
componentsDuringMergeState: BitIds;
|
|
21
21
|
componentsWithIndividualFiles: ConsumerComponent[];
|
|
22
|
-
componentsWithTrackDirs: ConsumerComponent[];
|
|
23
22
|
softTaggedComponents: BitId[];
|
|
24
23
|
snappedComponents: BitId[];
|
|
25
24
|
laneName: string | null;
|
|
@@ -182,7 +182,7 @@ class StatusMain {
|
|
|
182
182
|
const newAndModifiedLegacy = newComponents.concat(modifiedComponent);
|
|
183
183
|
const issuesToIgnore = this.issues.getIssuesToIgnoreGlobally();
|
|
184
184
|
|
|
185
|
-
if (
|
|
185
|
+
if (newAndModifiedLegacy.length) {
|
|
186
186
|
const newAndModified = await this.workspace.getManyByLegacy(newAndModifiedLegacy);
|
|
187
187
|
|
|
188
188
|
if (!issuesToIgnore.includes(_componentIssues().IssuesClasses.CircularDependencies.name)) {
|
|
@@ -193,10 +193,6 @@ class StatusMain {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
const componentsWithIssues = newAndModifiedLegacy.filter(component => {
|
|
196
|
-
if (consumer.isLegacy && component.issues) {
|
|
197
|
-
component.issues.delete(_componentIssues().IssuesClasses.RelativeComponentsAuthored);
|
|
198
|
-
}
|
|
199
|
-
|
|
200
196
|
return component.issues && !component.issues.isEmpty();
|
|
201
197
|
});
|
|
202
198
|
const componentsDuringMergeState = componentsList.listDuringMergeStateComponents();
|
|
@@ -232,7 +228,6 @@ class StatusMain {
|
|
|
232
228
|
mergePendingComponents,
|
|
233
229
|
componentsDuringMergeState,
|
|
234
230
|
componentsWithIndividualFiles: await componentsList.listComponentsWithIndividualFiles(),
|
|
235
|
-
componentsWithTrackDirs: await componentsList.listComponentsWithTrackDir(),
|
|
236
231
|
softTaggedComponents,
|
|
237
232
|
snappedComponents,
|
|
238
233
|
laneName
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["StatusMain","constructor","workspace","issues","insights","status","ConsumerNotFound","loader","start","BEFORE_STATUS","consumer","laneObj","getCurrentLaneObject","componentsList","ComponentsList","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","isLegacy","length","newAndModified","getManyByLegacy","includes","IssuesClasses","CircularDependencies","name","addInsightsAsComponentIssues","removeIgnoredIssuesFromComponents","componentsWithIssues","delete","RelativeComponentsAuthored","isEmpty","componentsDuringMergeState","listDuringMergeStateComponents","softTaggedComponents","listSoftTaggedComponents","snappedComponents","listSnappedComponentsOnMain","toBitId","currentLane","getCurrentLaneId","laneName","isDefault","Analytics","setExtraData","onDestroy","sortComponentsByName","componentsWithIndividualFiles","listComponentsWithIndividualFiles","componentsWithTrackDirs","listComponentsWithTrackDir","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, { DivergedComponent } 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 componentsWithTrackDirs: ConsumerComponent[];\n softTaggedComponents: BitId[];\n snappedComponents: BitId[];\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 newComponents: ConsumerComponent[] = (await componentsList.listNewComponents(true)) as ConsumerComponent[];\n const modifiedComponent = (await componentsList.listModifiedComponents(true)) 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 (!this.workspace.isLegacy && newAndModifiedLegacy.length) {\n const newAndModified = await this.workspace.getManyByLegacy(newAndModifiedLegacy);\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 if (consumer.isLegacy && component.issues) {\n component.issues.delete(IssuesClasses.RelativeComponentsAuthored);\n }\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 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 componentsWithTrackDirs: await componentsList.listComponentsWithTrackDir(),\n softTaggedComponents,\n snappedComponents,\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":"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"}
|
|
1
|
+
{"version":3,"names":["StatusMain","constructor","workspace","issues","insights","status","ConsumerNotFound","loader","start","BEFORE_STATUS","consumer","laneObj","getCurrentLaneObject","componentsList","ComponentsList","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","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, { DivergedComponent } 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 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 newComponents: ConsumerComponent[] = (await componentsList.listNewComponents(true)) as ConsumerComponent[];\n const modifiedComponent = (await componentsList.listModifiedComponents(true)) 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);\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 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 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":"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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.97",
|
|
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.97"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"@babel/runtime": "7.12.18",
|
|
15
15
|
"core-js": "^3.0.0",
|
|
16
16
|
"@teambit/harmony": "0.3.3",
|
|
17
|
-
"@teambit/cli": "0.0.
|
|
17
|
+
"@teambit/cli": "0.0.519",
|
|
18
18
|
"@teambit/legacy-bit-id": "0.0.399",
|
|
19
|
-
"@teambit/component-issues": "0.0.
|
|
20
|
-
"@teambit/insights": "0.0.
|
|
21
|
-
"@teambit/issues": "0.0.
|
|
22
|
-
"@teambit/workspace": "0.0.
|
|
19
|
+
"@teambit/component-issues": "0.0.57",
|
|
20
|
+
"@teambit/insights": "0.0.785",
|
|
21
|
+
"@teambit/issues": "0.0.93",
|
|
22
|
+
"@teambit/workspace": "0.0.785"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/mocha": "9.1.0",
|
|
@@ -30,40 +30,11 @@
|
|
|
30
30
|
"@types/node": "12.20.4"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@teambit/legacy": "1.0.
|
|
33
|
+
"@teambit/legacy": "1.0.300",
|
|
34
34
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
35
35
|
"react": "^16.8.0 || ^17.0.0"
|
|
36
36
|
},
|
|
37
37
|
"license": "Apache-2.0",
|
|
38
|
-
"bit": {
|
|
39
|
-
"bindingPrefix": "@teambit",
|
|
40
|
-
"env": {},
|
|
41
|
-
"overrides": {
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@teambit/legacy": "-",
|
|
44
|
-
"@babel/runtime": "7.12.18",
|
|
45
|
-
"core-js": "^3.0.0",
|
|
46
|
-
"react-dom": "-",
|
|
47
|
-
"react": "-"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@teambit/legacy": "-",
|
|
51
|
-
"@types/mocha": "9.1.0",
|
|
52
|
-
"@types/testing-library__jest-dom": "5.9.5",
|
|
53
|
-
"@types/jest": "^26.0.0",
|
|
54
|
-
"@types/react-dom": "^17.0.5",
|
|
55
|
-
"@types/react": "^17.0.8",
|
|
56
|
-
"@types/node": "12.20.4",
|
|
57
|
-
"react-dom": "-",
|
|
58
|
-
"react": "-"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"@teambit/legacy": "1.0.299",
|
|
62
|
-
"react-dom": "^16.8.0 || ^17.0.0",
|
|
63
|
-
"react": "^16.8.0 || ^17.0.0"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
38
|
"private": false,
|
|
68
39
|
"engines": {
|
|
69
40
|
"node": ">=12.22.0"
|
|
File without changes
|
|
Binary file
|