@teambit/checkout 0.0.273 → 0.0.275
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/checkout-cmd.d.ts +2 -1
- package/dist/checkout-cmd.js +11 -6
- package/dist/checkout-cmd.js.map +1 -1
- package/dist/checkout.main.runtime.d.ts +3 -1
- package/dist/checkout.main.runtime.js +26 -5
- package/dist/checkout.main.runtime.js.map +1 -1
- package/dist/revert-cmd.d.ts +20 -0
- package/dist/revert-cmd.js +61 -0
- package/dist/revert-cmd.js.map +1 -0
- package/package-tar/teambit-checkout-0.0.275.tgz +0 -0
- package/package.json +10 -10
- package/package-tar/teambit-checkout-0.0.273.tgz +0 -0
- /package/dist/{preview-1689218262868.js → preview-1689304690678.js} +0 -0
package/dist/checkout-cmd.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare class CheckoutCmd implements Command {
|
|
|
15
15
|
options: CommandOptions;
|
|
16
16
|
loader: boolean;
|
|
17
17
|
constructor(checkout: CheckoutMain);
|
|
18
|
-
report([to, componentPattern]: [string, string], { interactiveMerge, ours, theirs, manual, all, workspaceOnly, verbose, skipDependencyInstallation, }: {
|
|
18
|
+
report([to, componentPattern]: [string, string], { interactiveMerge, ours, theirs, manual, all, workspaceOnly, verbose, skipDependencyInstallation, revert, }: {
|
|
19
19
|
interactiveMerge?: boolean;
|
|
20
20
|
ours?: boolean;
|
|
21
21
|
theirs?: boolean;
|
|
@@ -24,5 +24,6 @@ export declare class CheckoutCmd implements Command {
|
|
|
24
24
|
workspaceOnly?: boolean;
|
|
25
25
|
verbose?: boolean;
|
|
26
26
|
skipDependencyInstallation?: boolean;
|
|
27
|
+
revert?: boolean;
|
|
27
28
|
}): Promise<string>;
|
|
28
29
|
}
|
package/dist/checkout-cmd.js
CHANGED
|
@@ -73,7 +73,8 @@ class CheckoutCmd {
|
|
|
73
73
|
all = false,
|
|
74
74
|
workspaceOnly = false,
|
|
75
75
|
verbose = false,
|
|
76
|
-
skipDependencyInstallation = false
|
|
76
|
+
skipDependencyInstallation = false,
|
|
77
|
+
revert = false
|
|
77
78
|
}) {
|
|
78
79
|
const checkoutProps = {
|
|
79
80
|
promptMergeOptions: interactiveMerge,
|
|
@@ -82,7 +83,8 @@ class CheckoutCmd {
|
|
|
82
83
|
verbose,
|
|
83
84
|
isLane: false,
|
|
84
85
|
skipNpmInstall: skipDependencyInstallation,
|
|
85
|
-
workspaceOnly
|
|
86
|
+
workspaceOnly,
|
|
87
|
+
revert
|
|
86
88
|
};
|
|
87
89
|
const {
|
|
88
90
|
components,
|
|
@@ -98,6 +100,7 @@ class CheckoutCmd {
|
|
|
98
100
|
const isHead = to === 'head';
|
|
99
101
|
const isReset = to === 'reset';
|
|
100
102
|
const isLatest = to === 'latest';
|
|
103
|
+
const isMain = to === 'main';
|
|
101
104
|
// components that failed for no legitimate reason. e.g. merge-conflict.
|
|
102
105
|
const realFailedComponents = (failedComponents || []).filter(f => !f.unchangedLegitimately);
|
|
103
106
|
// components that weren't checked out for legitimate reasons, e.g. up-to-date.
|
|
@@ -125,12 +128,13 @@ once ready, snap/tag the components to persist the changes`;
|
|
|
125
128
|
return _chalk().default.underline(title) + (0, _merging().conflictSummaryReport)(components) + _chalk().default.yellow(suggestion);
|
|
126
129
|
};
|
|
127
130
|
const getSuccessfulOutput = () => {
|
|
131
|
+
const switchedOrReverted = revert ? 'reverted' : 'switched';
|
|
128
132
|
if (!components || !components.length) return '';
|
|
129
133
|
if (components.length === 1) {
|
|
130
134
|
const component = components[0];
|
|
131
135
|
const componentName = isReset ? component.id.toString() : component.id.toStringWithoutVersion();
|
|
132
136
|
if (isReset) return `successfully reset ${_chalk().default.bold(componentName)}\n`;
|
|
133
|
-
const title = `successfully
|
|
137
|
+
const title = `successfully ${switchedOrReverted} ${_chalk().default.bold(componentName)} to version ${_chalk().default.bold(
|
|
134
138
|
// @ts-ignore version is defined when !isReset
|
|
135
139
|
isHead || isLatest ? component.id.version : version)}\n`;
|
|
136
140
|
return `${_chalk().default.underline(title)} ${(0, _merging().applyVersionReport)(components, false)}`;
|
|
@@ -143,11 +147,12 @@ once ready, snap/tag the components to persist the changes`;
|
|
|
143
147
|
const getVerOutput = () => {
|
|
144
148
|
if (isHead) return 'their head version';
|
|
145
149
|
if (isLatest) return 'their latest version';
|
|
150
|
+
if (isMain) return 'their main version';
|
|
146
151
|
// @ts-ignore version is defined when !isReset
|
|
147
152
|
return `version ${_chalk().default.bold(version)}`;
|
|
148
153
|
};
|
|
149
154
|
const versionOutput = getVerOutput();
|
|
150
|
-
const title = `successfully
|
|
155
|
+
const title = `successfully ${switchedOrReverted} the following components to ${versionOutput}\n\n`;
|
|
151
156
|
const showVersion = isHead || isReset;
|
|
152
157
|
const componentsStr = (0, _merging().applyVersionReport)(components, true, showVersion);
|
|
153
158
|
return _chalk().default.underline(title) + componentsStr;
|
|
@@ -163,8 +168,8 @@ once ready, snap/tag the components to persist the changes`;
|
|
|
163
168
|
const notCheckedOutLegitimately = notCheckedOutComponents.length;
|
|
164
169
|
const failedToCheckOut = realFailedComponents.length;
|
|
165
170
|
const newLines = '\n\n';
|
|
166
|
-
const title = _chalk().default.bold.underline('
|
|
167
|
-
const checkedOutStr = `\nTotal
|
|
171
|
+
const title = _chalk().default.bold.underline('Summary');
|
|
172
|
+
const checkedOutStr = `\nTotal Changed: ${_chalk().default.bold(checkedOut.toString())}`;
|
|
168
173
|
const unchangedLegitimatelyStr = `\nTotal Unchanged: ${_chalk().default.bold(notCheckedOutLegitimately.toString())}`;
|
|
169
174
|
const failedToCheckOutStr = `\nTotal Failed: ${_chalk().default.bold(failedToCheckOut.toString())}`;
|
|
170
175
|
const newOnLaneNum = (newFromLane === null || newFromLane === void 0 ? void 0 : newFromLane.length) || 0;
|
package/dist/checkout-cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["CheckoutCmd","constructor","checkout","name","description","COMPONENT_PATTERN_HELP","report","to","componentPattern","interactiveMerge","ours","theirs","manual","all","workspaceOnly","verbose","skipDependencyInstallation","checkoutProps","promptMergeOptions","mergeStrategy","getMergeStrategy","isLane","skipNpmInstall","components","version","failedComponents","removedComponents","leftUnresolvedConflicts","newFromLane","newFromLaneAdded","installationError","compilationError","checkoutByCLIValues","isHead","isReset","isLatest","realFailedComponents","filter","f","unchangedLegitimately","notCheckedOutComponents","getFailureOutput","length","title","body","map","failedComponent","chalk","bold","id","toString","red","failureMessage","join","underline","getNotCheckedOutOutput","green","getConflictSummary","suggestion","conflictSummaryReport","yellow","getSuccessfulOutput","component","componentName","toStringWithoutVersion","applyVersionReport","getVerOutput","versionOutput","showVersion","componentsStr","getNewOnLaneOutput","getSummary","checkedOut","notCheckedOutLegitimately","failedToCheckOut","newLines","checkedOutStr","unchangedLegitimatelyStr","failedToCheckOutStr","newOnLaneNum","newOnLaneAddedStr","newOnLaneStr","getRemovedOutput","installationErrorOutput","compilationErrorOutput"],"sources":["checkout-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport {\n ApplyVersionResults,\n applyVersionReport,\n conflictSummaryReport,\n installationErrorOutput,\n compilationErrorOutput,\n getRemovedOutput,\n} from '@teambit/merging';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { getMergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { CheckoutMain, CheckoutProps } from './checkout.main.runtime';\n\nexport class CheckoutCmd implements Command {\n name = 'checkout <to> [component-pattern]';\n arguments = [\n {\n name: 'to',\n description:\n \"permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes\",\n },\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = 'switch between component versions or remove local changes';\n helpUrl = 'docs/components/merging-changes#checkout-snaps-to-the-working-directory';\n group = 'development';\n extendedDescription = `\n \\`bit checkout <version> [component-pattern]\\` => checkout the specified ids (or all components when --all is used) to the specified version\n \\`bit checkout head [component-pattern]\\` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n \\`bit checkout latest [component-pattern]\\` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n \\`bit checkout reset [component-pattern]\\` => remove local modifications from the specified ids (or all components when --all is used)`;\n alias = 'U';\n options = [\n [\n 'i',\n 'interactive-merge',\n 'when a component is modified and the merge process found conflicts, display options to resolve them',\n ],\n ['o', 'ours', 'in case of a conflict, override the used version with the current modification'],\n ['t', 'theirs', 'in case of a conflict, override the current modification with the specified version'],\n ['m', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'],\n ['r', 'reset', 'revert changes that were not snapped/tagged'],\n ['a', 'all', 'all components'],\n [\n 'e',\n 'workspace-only',\n 'when on a lane, avoid introducing new components from the remote lane that do not exist locally',\n ],\n ['v', 'verbose', 'showing verbose output for inspection'],\n ['x', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private checkout: CheckoutMain) {}\n\n async report(\n [to, componentPattern]: [string, string],\n {\n interactiveMerge = false,\n ours = false,\n theirs = false,\n manual = false,\n all = false,\n workspaceOnly = false,\n verbose = false,\n skipDependencyInstallation = false,\n }: {\n interactiveMerge?: boolean;\n ours?: boolean;\n theirs?: boolean;\n manual?: boolean;\n all?: boolean;\n workspaceOnly?: boolean;\n verbose?: boolean;\n skipDependencyInstallation?: boolean;\n }\n ) {\n const checkoutProps: CheckoutProps = {\n promptMergeOptions: interactiveMerge,\n mergeStrategy: getMergeStrategy(ours, theirs, manual),\n all,\n verbose,\n isLane: false,\n skipNpmInstall: skipDependencyInstallation,\n workspaceOnly,\n };\n const {\n components,\n version,\n failedComponents,\n removedComponents,\n leftUnresolvedConflicts,\n newFromLane,\n newFromLaneAdded,\n installationError,\n compilationError,\n }: ApplyVersionResults = await this.checkout.checkoutByCLIValues(to, componentPattern || '', checkoutProps);\n const isHead = to === 'head';\n const isReset = to === 'reset';\n const isLatest = to === 'latest';\n // components that failed for no legitimate reason. e.g. merge-conflict.\n const realFailedComponents = (failedComponents || []).filter((f) => !f.unchangedLegitimately);\n // components that weren't checked out for legitimate reasons, e.g. up-to-date.\n const notCheckedOutComponents = (failedComponents || []).filter((f) => f.unchangedLegitimately);\n\n const getFailureOutput = () => {\n if (!realFailedComponents.length) return '';\n const title = 'the checkout has been failed on the following component(s)';\n const body = realFailedComponents\n .map(\n (failedComponent) =>\n `${chalk.bold(failedComponent.id.toString())} - ${chalk.red(failedComponent.failureMessage)}`\n )\n .join('\\n');\n return `${chalk.underline(title)}\\n${body}\\n\\n`;\n };\n const getNotCheckedOutOutput = () => {\n if (!notCheckedOutComponents.length) return '';\n if (!verbose && all) {\n return chalk.green(\n `checkout was not needed for ${chalk.bold(\n notCheckedOutComponents.length.toString()\n )} components (use --verbose to get more details)\\n`\n );\n }\n const title = 'the checkout was not needed on the following component(s)';\n const body = notCheckedOutComponents\n .map((failedComponent) => `${failedComponent.id.toString()} - ${failedComponent.failureMessage}`)\n .join('\\n');\n return `${chalk.underline(title)}\\n${body}\\n\\n`;\n };\n const getConflictSummary = () => {\n if (!components || !components.length || !leftUnresolvedConflicts) return '';\n const title = `\\n\\nfiles with conflicts summary\\n`;\n const suggestion = `\\n\\nfix the conflicts above manually and then run \"bit install\" and \"bit compile\".\nonce ready, snap/tag the components to persist the changes`;\n return chalk.underline(title) + conflictSummaryReport(components) + chalk.yellow(suggestion);\n };\n const getSuccessfulOutput = () => {\n if (!components || !components.length) return '';\n if (components.length === 1) {\n const component = components[0];\n const componentName = isReset ? component.id.toString() : component.id.toStringWithoutVersion();\n if (isReset) return `successfully reset ${chalk.bold(componentName)}\\n`;\n const title = `successfully switched ${chalk.bold(componentName)} to version ${chalk.bold(\n // @ts-ignore version is defined when !isReset\n isHead || isLatest ? component.id.version : version\n )}\\n`;\n return `${chalk.underline(title)} ${applyVersionReport(components, false)}`;\n }\n if (isReset) {\n const title = 'successfully reset the following components\\n\\n';\n const body = components.map((component) => chalk.bold(component.id.toString())).join('\\n');\n return chalk.underline(title) + body;\n }\n const getVerOutput = () => {\n if (isHead) return 'their head version';\n if (isLatest) return 'their latest version';\n // @ts-ignore version is defined when !isReset\n return `version ${chalk.bold(version)}`;\n };\n const versionOutput = getVerOutput();\n const title = `successfully switched the following components to ${versionOutput}\\n\\n`;\n const showVersion = isHead || isReset;\n const componentsStr = applyVersionReport(components, true, showVersion);\n return chalk.underline(title) + componentsStr;\n };\n const getNewOnLaneOutput = () => {\n if (!newFromLane?.length) return '';\n const title = newFromLaneAdded\n ? `successfully added the following components from the lane`\n : `the following components introduced on the lane and were not added. omit --workspace-only flag to add them`;\n const body = newFromLane.join('\\n');\n return `\\n\\n${chalk.underline(title)}\\n${body}`;\n };\n const getSummary = () => {\n const checkedOut = components?.length || 0;\n const notCheckedOutLegitimately = notCheckedOutComponents.length;\n const failedToCheckOut = realFailedComponents.length;\n const newLines = '\\n\\n';\n const title = chalk.bold.underline('Checkout Summary');\n const checkedOutStr = `\\nTotal CheckedOut: ${chalk.bold(checkedOut.toString())}`;\n const unchangedLegitimatelyStr = `\\nTotal Unchanged: ${chalk.bold(notCheckedOutLegitimately.toString())}`;\n const failedToCheckOutStr = `\\nTotal Failed: ${chalk.bold(failedToCheckOut.toString())}`;\n const newOnLaneNum = newFromLane?.length || 0;\n const newOnLaneAddedStr = newFromLaneAdded ? ' (added)' : ' (not added)';\n const newOnLaneStr = newOnLaneNum\n ? `\\nNew on lane${newOnLaneAddedStr}: ${chalk.bold(newOnLaneNum.toString())}`\n : '';\n\n return newLines + title + checkedOutStr + unchangedLegitimatelyStr + failedToCheckOutStr + newOnLaneStr;\n };\n\n return (\n getFailureOutput() +\n getNotCheckedOutOutput() +\n getSuccessfulOutput() +\n getRemovedOutput(removedComponents) +\n getNewOnLaneOutput() +\n getConflictSummary() +\n getSummary() +\n installationErrorOutput(installationError) +\n compilationErrorOutput(compilationError)\n );\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAQA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAGO,MAAMA,WAAW,CAAoB;EA2C1CC,WAAW,CAASC,QAAsB,EAAE;IAAA,KAAxBA,QAAsB,GAAtBA,QAAsB;IAAA,8CA1CnC,mCAAmC;IAAA,mDAC9B,CACV;MACEC,IAAI,EAAE,IAAI;MACVC,WAAW,EACT;IACJ,CAAC,EACD;MACED,IAAI,EAAE,mBAAmB;MACzBC,WAAW,EAAEC;IACf,CAAC,CACF;IAAA,qDACa,2DAA2D;IAAA,iDAC/D,yEAAyE;IAAA,+CAC3E,aAAa;IAAA,6DACE;AACzB;AACA;AACA;AACA,yIAAyI;IAAA,+CAC/H,GAAG;IAAA,iDACD,CACR,CACE,GAAG,EACH,mBAAmB,EACnB,qGAAqG,CACtG,EACD,CAAC,GAAG,EAAE,MAAM,EAAE,gFAAgF,CAAC,EAC/F,CAAC,GAAG,EAAE,QAAQ,EAAE,qFAAqF,CAAC,EACtG,CAAC,GAAG,EAAE,QAAQ,EAAE,6FAA6F,CAAC,EAC9G,CAAC,GAAG,EAAE,OAAO,EAAE,6CAA6C,CAAC,EAC7D,CAAC,GAAG,EAAE,KAAK,EAAE,gBAAgB,CAAC,EAC9B,CACE,GAAG,EACH,gBAAgB,EAChB,iGAAiG,CAClG,EACD,CAAC,GAAG,EAAE,SAAS,EAAE,uCAAuC,CAAC,EACzD,CAAC,GAAG,EAAE,8BAA8B,EAAE,oDAAoD,CAAC,CAC5F;IAAA,gDACQ,IAAI;EAEgC;EAE7C,MAAMC,MAAM,CACV,CAACC,EAAE,EAAEC,gBAAgB,CAAmB,EACxC;IACEC,gBAAgB,GAAG,KAAK;IACxBC,IAAI,GAAG,KAAK;IACZC,MAAM,GAAG,KAAK;IACdC,MAAM,GAAG,KAAK;IACdC,GAAG,GAAG,KAAK;IACXC,aAAa,GAAG,KAAK;IACrBC,OAAO,GAAG,KAAK;IACfC,0BAA0B,GAAG;EAU/B,CAAC,EACD;IACA,MAAMC,aAA4B,GAAG;MACnCC,kBAAkB,EAAET,gBAAgB;MACpCU,aAAa,EAAE,IAAAC,gCAAgB,EAACV,IAAI,EAAEC,MAAM,EAAEC,MAAM,CAAC;MACrDC,GAAG;MACHE,OAAO;MACPM,MAAM,EAAE,KAAK;MACbC,cAAc,EAAEN,0BAA0B;MAC1CF;IACF,CAAC;IACD,MAAM;MACJS,UAAU;MACVC,OAAO;MACPC,gBAAgB;MAChBC,iBAAiB;MACjBC,uBAAuB;MACvBC,WAAW;MACXC,gBAAgB;MAChBC,iBAAiB;MACjBC;IACmB,CAAC,GAAG,MAAM,IAAI,CAAC7B,QAAQ,CAAC8B,mBAAmB,CAACzB,EAAE,EAAEC,gBAAgB,IAAI,EAAE,EAAES,aAAa,CAAC;IAC3G,MAAMgB,MAAM,GAAG1B,EAAE,KAAK,MAAM;IAC5B,MAAM2B,OAAO,GAAG3B,EAAE,KAAK,OAAO;IAC9B,MAAM4B,QAAQ,GAAG5B,EAAE,KAAK,QAAQ;IAChC;IACA,MAAM6B,oBAAoB,GAAG,CAACX,gBAAgB,IAAI,EAAE,EAAEY,MAAM,CAAEC,CAAC,IAAK,CAACA,CAAC,CAACC,qBAAqB,CAAC;IAC7F;IACA,MAAMC,uBAAuB,GAAG,CAACf,gBAAgB,IAAI,EAAE,EAAEY,MAAM,CAAEC,CAAC,IAAKA,CAAC,CAACC,qBAAqB,CAAC;IAE/F,MAAME,gBAAgB,GAAG,MAAM;MAC7B,IAAI,CAACL,oBAAoB,CAACM,MAAM,EAAE,OAAO,EAAE;MAC3C,MAAMC,KAAK,GAAG,4DAA4D;MAC1E,MAAMC,IAAI,GAAGR,oBAAoB,CAC9BS,GAAG,CACDC,eAAe,IACb,GAAEC,gBAAK,CAACC,IAAI,CAACF,eAAe,CAACG,EAAE,CAACC,QAAQ,EAAE,CAAE,MAAKH,gBAAK,CAACI,GAAG,CAACL,eAAe,CAACM,cAAc,CAAE,EAAC,CAChG,CACAC,IAAI,CAAC,IAAI,CAAC;MACb,OAAQ,GAAEN,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAE,KAAIC,IAAK,MAAK;IACjD,CAAC;IACD,MAAMW,sBAAsB,GAAG,MAAM;MACnC,IAAI,CAACf,uBAAuB,CAACE,MAAM,EAAE,OAAO,EAAE;MAC9C,IAAI,CAAC3B,OAAO,IAAIF,GAAG,EAAE;QACnB,OAAOkC,gBAAK,CAACS,KAAK,CACf,+BAA8BT,gBAAK,CAACC,IAAI,CACvCR,uBAAuB,CAACE,MAAM,CAACQ,QAAQ,EAAE,CACzC,mDAAkD,CACrD;MACH;MACA,MAAMP,KAAK,GAAG,2DAA2D;MACzE,MAAMC,IAAI,GAAGJ,uBAAuB,CACjCK,GAAG,CAAEC,eAAe,IAAM,GAAEA,eAAe,CAACG,EAAE,CAACC,QAAQ,EAAG,MAAKJ,eAAe,CAACM,cAAe,EAAC,CAAC,CAChGC,IAAI,CAAC,IAAI,CAAC;MACb,OAAQ,GAAEN,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAE,KAAIC,IAAK,MAAK;IACjD,CAAC;IACD,MAAMa,kBAAkB,GAAG,MAAM;MAC/B,IAAI,CAAClC,UAAU,IAAI,CAACA,UAAU,CAACmB,MAAM,IAAI,CAACf,uBAAuB,EAAE,OAAO,EAAE;MAC5E,MAAMgB,KAAK,GAAI,oCAAmC;MAClD,MAAMe,UAAU,GAAI;AAC1B,2DAA2D;MACrD,OAAOX,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAC,GAAG,IAAAgB,gCAAqB,EAACpC,UAAU,CAAC,GAAGwB,gBAAK,CAACa,MAAM,CAACF,UAAU,CAAC;IAC9F,CAAC;IACD,MAAMG,mBAAmB,GAAG,MAAM;MAChC,IAAI,CAACtC,UAAU,IAAI,CAACA,UAAU,CAACmB,MAAM,EAAE,OAAO,EAAE;MAChD,IAAInB,UAAU,CAACmB,MAAM,KAAK,CAAC,EAAE;QAC3B,MAAMoB,SAAS,GAAGvC,UAAU,CAAC,CAAC,CAAC;QAC/B,MAAMwC,aAAa,GAAG7B,OAAO,GAAG4B,SAAS,CAACb,EAAE,CAACC,QAAQ,EAAE,GAAGY,SAAS,CAACb,EAAE,CAACe,sBAAsB,EAAE;QAC/F,IAAI9B,OAAO,EAAE,OAAQ,sBAAqBa,gBAAK,CAACC,IAAI,CAACe,aAAa,CAAE,IAAG;QACvE,MAAMpB,KAAK,GAAI,yBAAwBI,gBAAK,CAACC,IAAI,CAACe,aAAa,CAAE,eAAchB,gBAAK,CAACC,IAAI;QACvF;QACAf,MAAM,IAAIE,QAAQ,GAAG2B,SAAS,CAACb,EAAE,CAACzB,OAAO,GAAGA,OAAO,CACnD,IAAG;QACL,OAAQ,GAAEuB,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAE,IAAG,IAAAsB,6BAAkB,EAAC1C,UAAU,EAAE,KAAK,CAAE,EAAC;MAC7E;MACA,IAAIW,OAAO,EAAE;QACX,MAAMS,KAAK,GAAG,iDAAiD;QAC/D,MAAMC,IAAI,GAAGrB,UAAU,CAACsB,GAAG,CAAEiB,SAAS,IAAKf,gBAAK,CAACC,IAAI,CAACc,SAAS,CAACb,EAAE,CAACC,QAAQ,EAAE,CAAC,CAAC,CAACG,IAAI,CAAC,IAAI,CAAC;QAC1F,OAAON,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAC,GAAGC,IAAI;MACtC;MACA,MAAMsB,YAAY,GAAG,MAAM;QACzB,IAAIjC,MAAM,EAAE,OAAO,oBAAoB;QACvC,IAAIE,QAAQ,EAAE,OAAO,sBAAsB;QAC3C;QACA,OAAQ,WAAUY,gBAAK,CAACC,IAAI,CAACxB,OAAO,CAAE,EAAC;MACzC,CAAC;MACD,MAAM2C,aAAa,GAAGD,YAAY,EAAE;MACpC,MAAMvB,KAAK,GAAI,qDAAoDwB,aAAc,MAAK;MACtF,MAAMC,WAAW,GAAGnC,MAAM,IAAIC,OAAO;MACrC,MAAMmC,aAAa,GAAG,IAAAJ,6BAAkB,EAAC1C,UAAU,EAAE,IAAI,EAAE6C,WAAW,CAAC;MACvE,OAAOrB,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAC,GAAG0B,aAAa;IAC/C,CAAC;IACD,MAAMC,kBAAkB,GAAG,MAAM;MAC/B,IAAI,EAAC1C,WAAW,aAAXA,WAAW,eAAXA,WAAW,CAAEc,MAAM,GAAE,OAAO,EAAE;MACnC,MAAMC,KAAK,GAAGd,gBAAgB,GACzB,2DAA0D,GAC1D,4GAA2G;MAChH,MAAMe,IAAI,GAAGhB,WAAW,CAACyB,IAAI,CAAC,IAAI,CAAC;MACnC,OAAQ,OAAMN,gBAAK,CAACO,SAAS,CAACX,KAAK,CAAE,KAAIC,IAAK,EAAC;IACjD,CAAC;IACD,MAAM2B,UAAU,GAAG,MAAM;MACvB,MAAMC,UAAU,GAAG,CAAAjD,UAAU,aAAVA,UAAU,uBAAVA,UAAU,CAAEmB,MAAM,KAAI,CAAC;MAC1C,MAAM+B,yBAAyB,GAAGjC,uBAAuB,CAACE,MAAM;MAChE,MAAMgC,gBAAgB,GAAGtC,oBAAoB,CAACM,MAAM;MACpD,MAAMiC,QAAQ,GAAG,MAAM;MACvB,MAAMhC,KAAK,GAAGI,gBAAK,CAACC,IAAI,CAACM,SAAS,CAAC,kBAAkB,CAAC;MACtD,MAAMsB,aAAa,GAAI,uBAAsB7B,gBAAK,CAACC,IAAI,CAACwB,UAAU,CAACtB,QAAQ,EAAE,CAAE,EAAC;MAChF,MAAM2B,wBAAwB,GAAI,sBAAqB9B,gBAAK,CAACC,IAAI,CAACyB,yBAAyB,CAACvB,QAAQ,EAAE,CAAE,EAAC;MACzG,MAAM4B,mBAAmB,GAAI,mBAAkB/B,gBAAK,CAACC,IAAI,CAAC0B,gBAAgB,CAACxB,QAAQ,EAAE,CAAE,EAAC;MACxF,MAAM6B,YAAY,GAAG,CAAAnD,WAAW,aAAXA,WAAW,uBAAXA,WAAW,CAAEc,MAAM,KAAI,CAAC;MAC7C,MAAMsC,iBAAiB,GAAGnD,gBAAgB,GAAG,UAAU,GAAG,cAAc;MACxE,MAAMoD,YAAY,GAAGF,YAAY,GAC5B,gBAAeC,iBAAkB,KAAIjC,gBAAK,CAACC,IAAI,CAAC+B,YAAY,CAAC7B,QAAQ,EAAE,CAAE,EAAC,GAC3E,EAAE;MAEN,OAAOyB,QAAQ,GAAGhC,KAAK,GAAGiC,aAAa,GAAGC,wBAAwB,GAAGC,mBAAmB,GAAGG,YAAY;IACzG,CAAC;IAED,OACExC,gBAAgB,EAAE,GAClBc,sBAAsB,EAAE,GACxBM,mBAAmB,EAAE,GACrB,IAAAqB,2BAAgB,EAACxD,iBAAiB,CAAC,GACnC4C,kBAAkB,EAAE,GACpBb,kBAAkB,EAAE,GACpBc,UAAU,EAAE,GACZ,IAAAY,kCAAuB,EAACrD,iBAAiB,CAAC,GAC1C,IAAAsD,iCAAsB,EAACrD,gBAAgB,CAAC;EAE5C;AACF;AAAC"}
|
|
1
|
+
{"version":3,"names":["CheckoutCmd","constructor","checkout","name","description","COMPONENT_PATTERN_HELP","report","to","componentPattern","interactiveMerge","ours","theirs","manual","all","workspaceOnly","verbose","skipDependencyInstallation","revert","checkoutProps","promptMergeOptions","mergeStrategy","getMergeStrategy","isLane","skipNpmInstall","components","version","failedComponents","removedComponents","leftUnresolvedConflicts","newFromLane","newFromLaneAdded","installationError","compilationError","checkoutByCLIValues","isHead","isReset","isLatest","isMain","realFailedComponents","filter","f","unchangedLegitimately","notCheckedOutComponents","getFailureOutput","length","title","body","map","failedComponent","chalk","bold","id","toString","red","failureMessage","join","underline","getNotCheckedOutOutput","green","getConflictSummary","suggestion","conflictSummaryReport","yellow","getSuccessfulOutput","switchedOrReverted","component","componentName","toStringWithoutVersion","applyVersionReport","getVerOutput","versionOutput","showVersion","componentsStr","getNewOnLaneOutput","getSummary","checkedOut","notCheckedOutLegitimately","failedToCheckOut","newLines","checkedOutStr","unchangedLegitimatelyStr","failedToCheckOutStr","newOnLaneNum","newOnLaneAddedStr","newOnLaneStr","getRemovedOutput","installationErrorOutput","compilationErrorOutput"],"sources":["checkout-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport {\n ApplyVersionResults,\n applyVersionReport,\n conflictSummaryReport,\n installationErrorOutput,\n compilationErrorOutput,\n getRemovedOutput,\n} from '@teambit/merging';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { getMergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { CheckoutMain, CheckoutProps } from './checkout.main.runtime';\n\nexport class CheckoutCmd implements Command {\n name = 'checkout <to> [component-pattern]';\n arguments = [\n {\n name: 'to',\n description:\n \"permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes\",\n },\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = 'switch between component versions or remove local changes';\n helpUrl = 'docs/components/merging-changes#checkout-snaps-to-the-working-directory';\n group = 'development';\n extendedDescription = `\n \\`bit checkout <version> [component-pattern]\\` => checkout the specified ids (or all components when --all is used) to the specified version\n \\`bit checkout head [component-pattern]\\` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n \\`bit checkout latest [component-pattern]\\` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n \\`bit checkout reset [component-pattern]\\` => remove local modifications from the specified ids (or all components when --all is used)`;\n alias = 'U';\n options = [\n [\n 'i',\n 'interactive-merge',\n 'when a component is modified and the merge process found conflicts, display options to resolve them',\n ],\n ['o', 'ours', 'in case of a conflict, override the used version with the current modification'],\n ['t', 'theirs', 'in case of a conflict, override the current modification with the specified version'],\n ['m', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'],\n ['r', 'reset', 'revert changes that were not snapped/tagged'],\n ['a', 'all', 'all components'],\n [\n 'e',\n 'workspace-only',\n 'when on a lane, avoid introducing new components from the remote lane that do not exist locally',\n ],\n ['v', 'verbose', 'showing verbose output for inspection'],\n ['x', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private checkout: CheckoutMain) {}\n\n async report(\n [to, componentPattern]: [string, string],\n {\n interactiveMerge = false,\n ours = false,\n theirs = false,\n manual = false,\n all = false,\n workspaceOnly = false,\n verbose = false,\n skipDependencyInstallation = false,\n revert = false,\n }: {\n interactiveMerge?: boolean;\n ours?: boolean;\n theirs?: boolean;\n manual?: boolean;\n all?: boolean;\n workspaceOnly?: boolean;\n verbose?: boolean;\n skipDependencyInstallation?: boolean;\n revert?: boolean;\n }\n ) {\n const checkoutProps: CheckoutProps = {\n promptMergeOptions: interactiveMerge,\n mergeStrategy: getMergeStrategy(ours, theirs, manual),\n all,\n verbose,\n isLane: false,\n skipNpmInstall: skipDependencyInstallation,\n workspaceOnly,\n revert,\n };\n const {\n components,\n version,\n failedComponents,\n removedComponents,\n leftUnresolvedConflicts,\n newFromLane,\n newFromLaneAdded,\n installationError,\n compilationError,\n }: ApplyVersionResults = await this.checkout.checkoutByCLIValues(to, componentPattern || '', checkoutProps);\n const isHead = to === 'head';\n const isReset = to === 'reset';\n const isLatest = to === 'latest';\n const isMain = to === 'main';\n // components that failed for no legitimate reason. e.g. merge-conflict.\n const realFailedComponents = (failedComponents || []).filter((f) => !f.unchangedLegitimately);\n // components that weren't checked out for legitimate reasons, e.g. up-to-date.\n const notCheckedOutComponents = (failedComponents || []).filter((f) => f.unchangedLegitimately);\n\n const getFailureOutput = () => {\n if (!realFailedComponents.length) return '';\n const title = 'the checkout has been failed on the following component(s)';\n const body = realFailedComponents\n .map(\n (failedComponent) =>\n `${chalk.bold(failedComponent.id.toString())} - ${chalk.red(failedComponent.failureMessage)}`\n )\n .join('\\n');\n return `${chalk.underline(title)}\\n${body}\\n\\n`;\n };\n const getNotCheckedOutOutput = () => {\n if (!notCheckedOutComponents.length) return '';\n if (!verbose && all) {\n return chalk.green(\n `checkout was not needed for ${chalk.bold(\n notCheckedOutComponents.length.toString()\n )} components (use --verbose to get more details)\\n`\n );\n }\n const title = 'the checkout was not needed on the following component(s)';\n const body = notCheckedOutComponents\n .map((failedComponent) => `${failedComponent.id.toString()} - ${failedComponent.failureMessage}`)\n .join('\\n');\n return `${chalk.underline(title)}\\n${body}\\n\\n`;\n };\n const getConflictSummary = () => {\n if (!components || !components.length || !leftUnresolvedConflicts) return '';\n const title = `\\n\\nfiles with conflicts summary\\n`;\n const suggestion = `\\n\\nfix the conflicts above manually and then run \"bit install\" and \"bit compile\".\nonce ready, snap/tag the components to persist the changes`;\n return chalk.underline(title) + conflictSummaryReport(components) + chalk.yellow(suggestion);\n };\n const getSuccessfulOutput = () => {\n const switchedOrReverted = revert ? 'reverted' : 'switched';\n if (!components || !components.length) return '';\n if (components.length === 1) {\n const component = components[0];\n const componentName = isReset ? component.id.toString() : component.id.toStringWithoutVersion();\n if (isReset) return `successfully reset ${chalk.bold(componentName)}\\n`;\n const title = `successfully ${switchedOrReverted} ${chalk.bold(componentName)} to version ${chalk.bold(\n // @ts-ignore version is defined when !isReset\n isHead || isLatest ? component.id.version : version\n )}\\n`;\n return `${chalk.underline(title)} ${applyVersionReport(components, false)}`;\n }\n if (isReset) {\n const title = 'successfully reset the following components\\n\\n';\n const body = components.map((component) => chalk.bold(component.id.toString())).join('\\n');\n return chalk.underline(title) + body;\n }\n const getVerOutput = () => {\n if (isHead) return 'their head version';\n if (isLatest) return 'their latest version';\n if (isMain) return 'their main version';\n // @ts-ignore version is defined when !isReset\n return `version ${chalk.bold(version)}`;\n };\n const versionOutput = getVerOutput();\n const title = `successfully ${switchedOrReverted} the following components to ${versionOutput}\\n\\n`;\n const showVersion = isHead || isReset;\n const componentsStr = applyVersionReport(components, true, showVersion);\n return chalk.underline(title) + componentsStr;\n };\n const getNewOnLaneOutput = () => {\n if (!newFromLane?.length) return '';\n const title = newFromLaneAdded\n ? `successfully added the following components from the lane`\n : `the following components introduced on the lane and were not added. omit --workspace-only flag to add them`;\n const body = newFromLane.join('\\n');\n return `\\n\\n${chalk.underline(title)}\\n${body}`;\n };\n const getSummary = () => {\n const checkedOut = components?.length || 0;\n const notCheckedOutLegitimately = notCheckedOutComponents.length;\n const failedToCheckOut = realFailedComponents.length;\n const newLines = '\\n\\n';\n const title = chalk.bold.underline('Summary');\n const checkedOutStr = `\\nTotal Changed: ${chalk.bold(checkedOut.toString())}`;\n const unchangedLegitimatelyStr = `\\nTotal Unchanged: ${chalk.bold(notCheckedOutLegitimately.toString())}`;\n const failedToCheckOutStr = `\\nTotal Failed: ${chalk.bold(failedToCheckOut.toString())}`;\n const newOnLaneNum = newFromLane?.length || 0;\n const newOnLaneAddedStr = newFromLaneAdded ? ' (added)' : ' (not added)';\n const newOnLaneStr = newOnLaneNum\n ? `\\nNew on lane${newOnLaneAddedStr}: ${chalk.bold(newOnLaneNum.toString())}`\n : '';\n\n return newLines + title + checkedOutStr + unchangedLegitimatelyStr + failedToCheckOutStr + newOnLaneStr;\n };\n\n return (\n getFailureOutput() +\n getNotCheckedOutOutput() +\n getSuccessfulOutput() +\n getRemovedOutput(removedComponents) +\n getNewOnLaneOutput() +\n getConflictSummary() +\n getSummary() +\n installationErrorOutput(installationError) +\n compilationErrorOutput(compilationError)\n );\n }\n}\n"],"mappings":"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"}
|
|
@@ -14,11 +14,13 @@ export declare type CheckoutProps = {
|
|
|
14
14
|
ids?: ComponentID[];
|
|
15
15
|
head?: boolean;
|
|
16
16
|
latest?: boolean;
|
|
17
|
+
main?: boolean;
|
|
17
18
|
promptMergeOptions?: boolean;
|
|
18
19
|
mergeStrategy?: MergeStrategy | null;
|
|
19
20
|
verbose?: boolean;
|
|
20
21
|
skipNpmInstall?: boolean;
|
|
21
22
|
reset?: boolean;
|
|
23
|
+
revert?: boolean;
|
|
22
24
|
all?: boolean;
|
|
23
25
|
isLane?: boolean;
|
|
24
26
|
workspaceOnly?: boolean;
|
|
@@ -33,7 +35,7 @@ export declare type ComponentStatusBeforeMergeAttempt = ComponentStatusBase & {
|
|
|
33
35
|
componentModel: ModelComponent;
|
|
34
36
|
};
|
|
35
37
|
};
|
|
36
|
-
declare type CheckoutTo = 'head' | 'reset' | string;
|
|
38
|
+
declare type CheckoutTo = 'head' | 'reset' | 'main' | string;
|
|
37
39
|
export declare class CheckoutMain {
|
|
38
40
|
private workspace;
|
|
39
41
|
private logger;
|
|
@@ -149,6 +149,13 @@ function _checkoutVersion() {
|
|
|
149
149
|
};
|
|
150
150
|
return data;
|
|
151
151
|
}
|
|
152
|
+
function _revertCmd() {
|
|
153
|
+
const data = require("./revert-cmd");
|
|
154
|
+
_revertCmd = function () {
|
|
155
|
+
return data;
|
|
156
|
+
};
|
|
157
|
+
return data;
|
|
158
|
+
}
|
|
152
159
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
153
160
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
154
161
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -272,7 +279,10 @@ class CheckoutMain {
|
|
|
272
279
|
};
|
|
273
280
|
}
|
|
274
281
|
async checkoutByCLIValues(to, componentPattern, checkoutProps) {
|
|
275
|
-
|
|
282
|
+
const {
|
|
283
|
+
revert
|
|
284
|
+
} = checkoutProps;
|
|
285
|
+
this.logger.setStatusLine(revert ? 'reverting components...' : _loaderMessages().BEFORE_CHECKOUT);
|
|
276
286
|
if (!this.workspace) throw new (_workspace().OutsideWorkspaceError)();
|
|
277
287
|
const consumer = this.workspace.consumer;
|
|
278
288
|
await this.importer.importCurrentObjects(); // important. among others, it fetches the remote lane object and its new components.
|
|
@@ -304,7 +314,7 @@ class CheckoutMain {
|
|
|
304
314
|
this.workspace.bitMap.makeComponentsAvailableOnMain(unavailableOnMain);
|
|
305
315
|
}
|
|
306
316
|
async parseValues(to, componentPattern, checkoutProps) {
|
|
307
|
-
if (to === _constants().HEAD) checkoutProps.head = true;else if (to === _constants().LATEST) checkoutProps.latest = true;else if (to === 'reset') checkoutProps.reset = true;else {
|
|
317
|
+
if (to === _constants().HEAD) checkoutProps.head = true;else if (to === _constants().LATEST) checkoutProps.latest = true;else if (to === 'reset') checkoutProps.reset = true;else if (to === 'main') checkoutProps.main = true;else {
|
|
308
318
|
if (!_legacyBitId().BitId.isValidVersion(to)) throw new (_bitError().BitError)(`the specified version "${to}" is not a valid version`);
|
|
309
319
|
checkoutProps.version = to;
|
|
310
320
|
}
|
|
@@ -329,6 +339,9 @@ class CheckoutMain {
|
|
|
329
339
|
if (checkoutProps.workspaceOnly && !checkoutProps.head) {
|
|
330
340
|
throw new (_bitError().BitError)(`--workspace-only flag can only be used with "head" (bit checkout head --workspace-only)`);
|
|
331
341
|
}
|
|
342
|
+
if (checkoutProps.revert) {
|
|
343
|
+
checkoutProps.skipUpdatingBitmap = true;
|
|
344
|
+
}
|
|
332
345
|
const idsOnWorkspace = componentPattern ? await this.workspace.idsByPattern(componentPattern) : await this.workspace.listIds();
|
|
333
346
|
const currentLane = await this.workspace.consumer.getCurrentLaneObject();
|
|
334
347
|
const currentLaneIds = currentLane === null || currentLane === void 0 ? void 0 : currentLane.toBitIds();
|
|
@@ -357,6 +370,8 @@ class CheckoutMain {
|
|
|
357
370
|
version,
|
|
358
371
|
head: headVersion,
|
|
359
372
|
reset,
|
|
373
|
+
revert,
|
|
374
|
+
main,
|
|
360
375
|
latest: latestVersion,
|
|
361
376
|
versionPerId
|
|
362
377
|
} = checkoutProps;
|
|
@@ -373,13 +388,19 @@ class CheckoutMain {
|
|
|
373
388
|
if (!componentModel) {
|
|
374
389
|
return returnFailure(`component ${component.id.toString()} is new, no version to checkout`, true);
|
|
375
390
|
}
|
|
391
|
+
if (main && !componentModel.head) {
|
|
392
|
+
return returnFailure(`component ${component.id.toString()} is not available on main`);
|
|
393
|
+
}
|
|
376
394
|
const unmerged = repo.unmergedComponents.getEntry(component.name);
|
|
377
395
|
if (!reset && unmerged) {
|
|
378
396
|
return returnFailure(`component ${component.id.toStringWithoutVersion()} is in during-merge state, please snap/tag it first (or use bit merge --resolve/--abort)`);
|
|
379
397
|
}
|
|
380
398
|
const getNewVersion = async () => {
|
|
399
|
+
var _componentModel$head;
|
|
381
400
|
if (reset) return component.id.version;
|
|
382
401
|
if (headVersion) return componentModel.headIncludeRemote(repo);
|
|
402
|
+
// we verified previously that head exists in case of "main"
|
|
403
|
+
if (main) return (_componentModel$head = componentModel.head) === null || _componentModel$head === void 0 ? void 0 : _componentModel$head.toString();
|
|
383
404
|
if (latestVersion) {
|
|
384
405
|
const latest = componentModel.latestVersionIfExist();
|
|
385
406
|
return latest || componentModel.headIncludeRemote(repo);
|
|
@@ -389,7 +410,7 @@ class CheckoutMain {
|
|
|
389
410
|
return (_versionPerId$find = versionPerId.find(id => id._legacy.isEqualWithoutVersion(component.id))) === null || _versionPerId$find === void 0 ? void 0 : _versionPerId$find.version;
|
|
390
411
|
}
|
|
391
412
|
|
|
392
|
-
//
|
|
413
|
+
// if all above are false, the version is defined
|
|
393
414
|
return version;
|
|
394
415
|
};
|
|
395
416
|
const newVersion = await getNewVersion();
|
|
@@ -431,7 +452,7 @@ class CheckoutMain {
|
|
|
431
452
|
return returnFailure(`component has been removed`, true);
|
|
432
453
|
}
|
|
433
454
|
const newId = component.id.changeVersion(newVersion);
|
|
434
|
-
if (reset || !isModified) {
|
|
455
|
+
if (reset || !isModified || revert) {
|
|
435
456
|
// if the component is not modified, no need to try merge the files, they will be written later on according to the
|
|
436
457
|
// checked out version. same thing when no version is specified, it'll be reset to the model-version later.
|
|
437
458
|
return {
|
|
@@ -496,7 +517,7 @@ class CheckoutMain {
|
|
|
496
517
|
static async provider([cli, workspace, loggerMain, compWriter, importer, remove]) {
|
|
497
518
|
const logger = loggerMain.createLogger(_checkout().CheckoutAspect.id);
|
|
498
519
|
const checkoutMain = new CheckoutMain(workspace, logger, compWriter, importer, remove);
|
|
499
|
-
cli.register(new (_checkoutCmd().CheckoutCmd)(checkoutMain));
|
|
520
|
+
cli.register(new (_checkoutCmd().CheckoutCmd)(checkoutMain), new (_revertCmd().RevertCmd)(checkoutMain));
|
|
500
521
|
return checkoutMain;
|
|
501
522
|
}
|
|
502
523
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["CheckoutMain","constructor","workspace","logger","componentWriter","importer","remove","checkout","checkoutProps","consumer","version","ids","promptMergeOptions","syncNewComponents","bitIds","BitIds","fromArray","map","id","_legacy","components","loadComponents","allComponentStatusBeforeMerge","Promise","all","component","getComponentStatusBeforeMergeAttempt","compsNeedMerge","filter","c","propsForMerge","compsNotNeedMerge","toImport","compStatus","idsToImport","push","changeVersion","currentlyUsedVersion","flat","scope","legacyScope","scopeImporter","importManyIfMissingWithoutDeps","getComponentsStatusOfMergeNeeded","tmp","Tmp","afterMergeAttempt","getMergeStatus","clear","err","compStatusMergeNeeded","allComponentsStatus","componentWithConflict","find","mergeResults","hasConflicts","mergeStrategy","GeneralError","toStringWithoutVersion","getMergeStrategyInteractive","failedComponents","componentStatus","failureMessage","shouldBeRemoved","unchangedLegitimately","succeededComponents","checkoutPropsLegacy","componentsResults","mapSeries","currentComponent","componentFromFS","applyVersion","markFilesToBeRemovedIfNeeded","componentsLegacy","compact","newFromLane","newFromLaneAdded","head","getNewComponentsFromLane","workspaceOnly","compsNewFromLane","loadComponentFromModelImportIfNeeded","leftUnresolvedConflicts","componentWriterResults","length","manyComponentsWriterOpts","skipDependencyInstallation","skipNpmInstall","verbose","resetConfig","reset","skipUpdatingBitMap","skipUpdatingBitmap","writeMany","deleteFilesIfNeeded","appliedVersionComponents","applyVersionResult","componentIdsToRemove","undefined","removeLocallyByIds","force","removedComponents","n","toString","installationError","compilationError","checkoutByCLIValues","to","componentPattern","setStatusLine","BEFORE_CHECKOUT","OutsideWorkspaceError","importCurrentObjects","makeLaneComponentsAvailableOnMain","parseValues","checkoutResults","onDestroy","notExported","hasScope","changeScope","scopeComponentsImporter","importWithoutDeps","toVersionLatest","cache","error","unavailableOnMain","getUnavailableOnMainComponents","bitMap","makeComponentsAvailableOnMain","HEAD","LATEST","latest","BitId","isValidVersion","BitError","console","idsOnWorkspace","idsByPattern","listIds","currentLane","getCurrentLaneObject","currentLaneIds","toBitIds","hasWithoutVersion","lane","laneBitIds","newIds","bitId","isEqualWithoutVersion","newComponentIds","resolveMultipleComponentIds","nonRemovedNewIds","isRemoved","isComponentRemoved","headVersion","latestVersion","versionPerId","repo","objects","componentModel","getModelComponentIfExist","returnFailure","msg","unmerged","unmergedComponents","getEntry","name","getNewVersion","headIncludeRemote","latestVersionIfExist","newVersion","hasVersion","existingBitMapId","getBitId","ignoreVersion","divergeDataForMergePending","getDivergeDataForMergePending","isMergePending","isDiverged","currentVersionObject","loadVersion","isModified","isComponentModified","versionRef","getRef","Error","componentVersion","getObject","hash","newId","componentFromModel","baseVersion","baseComponent","otherComponent","threeWayMerge","otherLabel","currentLabel","provider","cli","loggerMain","compWriter","createLogger","CheckoutAspect","checkoutMain","register","CheckoutCmd","CLIAspect","WorkspaceAspect","LoggerAspect","ComponentWriterAspect","ImporterAspect","RemoveAspect","MainRuntime","addRuntime"],"sources":["checkout.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { BitId } from '@teambit/legacy-bit-id';\nimport { BitError } from '@teambit/bit-error';\nimport { compact } from 'lodash';\nimport { BEFORE_CHECKOUT } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport RemoveAspect, { RemoveMain } from '@teambit/remove';\nimport { ApplyVersionResults } from '@teambit/merging';\nimport ImporterAspect, { ImporterMain } from '@teambit/importer';\nimport { HEAD, LATEST } from '@teambit/legacy/dist/constants';\nimport { ComponentWriterAspect, ComponentWriterMain } from '@teambit/component-writer';\nimport {\n FailedComponents,\n getMergeStrategyInteractive,\n MergeStrategy,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport mapSeries from 'p-map-series';\nimport { BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Version, ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport { Tmp } from '@teambit/legacy/dist/scope/repositories';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport { ComponentID } from '@teambit/component-id';\nimport { CheckoutCmd } from './checkout-cmd';\nimport { CheckoutAspect } from './checkout.aspect';\nimport {\n applyVersion,\n markFilesToBeRemovedIfNeeded,\n ComponentStatus,\n deleteFilesIfNeeded,\n ComponentStatusBase,\n} from './checkout-version';\n\nexport type CheckoutProps = {\n version?: string; // if reset/head/latest is true, the version is undefined\n ids?: ComponentID[];\n head?: boolean;\n latest?: boolean;\n promptMergeOptions?: boolean;\n mergeStrategy?: MergeStrategy | null;\n verbose?: boolean;\n skipNpmInstall?: boolean;\n reset?: boolean; // remove local changes. if set, the version is undefined.\n all?: boolean; // checkout all ids\n isLane?: boolean;\n workspaceOnly?: boolean;\n versionPerId?: ComponentID[]; // if given, the ComponentID.version is the version to checkout to.\n skipUpdatingBitmap?: boolean; // needed for stash\n};\n\nexport type ComponentStatusBeforeMergeAttempt = ComponentStatusBase & {\n failureMessage?: string;\n unchangedLegitimately?: boolean; // failed to checkout but for a legitimate reason, such as, up-to-date\n propsForMerge?: {\n currentlyUsedVersion: string;\n componentModel: ModelComponent;\n };\n};\n\ntype CheckoutTo = 'head' | 'reset' | string;\n\nexport class CheckoutMain {\n constructor(\n private workspace: Workspace,\n private logger: Logger,\n private componentWriter: ComponentWriterMain,\n private importer: ImporterMain,\n private remove: RemoveMain\n ) {}\n\n async checkout(checkoutProps: CheckoutProps): Promise<ApplyVersionResults> {\n const consumer = this.workspace.consumer;\n const { version, ids, promptMergeOptions } = checkoutProps;\n await this.syncNewComponents(checkoutProps);\n const bitIds = BitIds.fromArray(ids?.map((id) => id._legacy) || []);\n const { components } = await consumer.loadComponents(bitIds);\n\n const allComponentStatusBeforeMerge = await Promise.all(\n components.map((component) => this.getComponentStatusBeforeMergeAttempt(component, checkoutProps))\n );\n const compsNeedMerge = allComponentStatusBeforeMerge.filter((c) => c.propsForMerge);\n const compsNotNeedMerge = allComponentStatusBeforeMerge.filter((c) => !c.propsForMerge) as ComponentStatus[];\n\n // in case the requested versions to checkout don't exist locally, import them.\n const toImport = allComponentStatusBeforeMerge\n .map((compStatus) => {\n const idsToImport = [compStatus.id];\n if (compStatus.propsForMerge) {\n idsToImport.push(compStatus.id.changeVersion(compStatus.propsForMerge.currentlyUsedVersion));\n }\n return idsToImport;\n })\n .flat();\n await this.workspace.scope.legacyScope.scopeImporter.importManyIfMissingWithoutDeps({\n ids: BitIds.fromArray(toImport),\n });\n\n const getComponentsStatusOfMergeNeeded = async (): Promise<ComponentStatus[]> => {\n const tmp = new Tmp(consumer.scope);\n try {\n const afterMergeAttempt = await Promise.all(compsNeedMerge.map((c) => this.getMergeStatus(c)));\n await tmp.clear();\n return afterMergeAttempt;\n } catch (err: any) {\n await tmp.clear();\n throw err;\n }\n };\n\n const compStatusMergeNeeded = await getComponentsStatusOfMergeNeeded();\n\n const allComponentsStatus: ComponentStatus[] = [...compStatusMergeNeeded, ...compsNotNeedMerge];\n const componentWithConflict = allComponentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict) {\n if (!promptMergeOptions && !checkoutProps.mergeStrategy) {\n throw new GeneralError(\n `automatic merge has failed for component ${componentWithConflict.id.toStringWithoutVersion()}.\\nplease use \"--manual\" to manually merge changes or use \"--theirs / --ours\" to choose one of the conflicted versions`\n );\n }\n if (!checkoutProps.mergeStrategy) checkoutProps.mergeStrategy = await getMergeStrategyInteractive();\n }\n const failedComponents: FailedComponents[] = allComponentsStatus\n .filter((componentStatus) => componentStatus.failureMessage)\n .filter((componentStatus) => !componentStatus.shouldBeRemoved)\n .map((componentStatus) => ({\n id: componentStatus.id,\n failureMessage: componentStatus.failureMessage as string,\n unchangedLegitimately: componentStatus.unchangedLegitimately,\n }));\n\n const succeededComponents = allComponentsStatus.filter((componentStatus) => !componentStatus.failureMessage);\n // do not use Promise.all for applyVersion. otherwise, it'll write all components in parallel,\n // which can be an issue when some components are also dependencies of others\n const checkoutPropsLegacy = { ...checkoutProps, ids: checkoutProps.ids?.map((id) => id._legacy) };\n const componentsResults = await mapSeries(\n succeededComponents,\n ({ id, currentComponent: componentFromFS, mergeResults }) => {\n return applyVersion(consumer, id, componentFromFS, mergeResults, checkoutPropsLegacy);\n }\n );\n\n markFilesToBeRemovedIfNeeded(succeededComponents, componentsResults);\n\n const componentsLegacy = compact(componentsResults.map((c) => c.component));\n\n let newFromLane: ComponentID[] | undefined;\n let newFromLaneAdded = false;\n if (checkoutProps.head) {\n newFromLane = await this.getNewComponentsFromLane(checkoutProps.ids || []);\n if (!checkoutProps.workspaceOnly) {\n const compsNewFromLane = await Promise.all(\n newFromLane.map((id) => consumer.loadComponentFromModelImportIfNeeded(id._legacy))\n );\n componentsLegacy.push(...compsNewFromLane);\n newFromLaneAdded = true;\n }\n }\n\n const leftUnresolvedConflicts = componentWithConflict && checkoutProps.mergeStrategy === 'manual';\n let componentWriterResults;\n if (componentsLegacy.length) {\n const manyComponentsWriterOpts = {\n components: componentsLegacy,\n skipDependencyInstallation: checkoutProps.skipNpmInstall || leftUnresolvedConflicts,\n verbose: checkoutProps.verbose,\n resetConfig: checkoutProps.reset,\n skipUpdatingBitMap: checkoutProps.skipUpdatingBitmap,\n };\n componentWriterResults = await this.componentWriter.writeMany(manyComponentsWriterOpts);\n await deleteFilesIfNeeded(componentsResults, this.workspace);\n }\n\n const appliedVersionComponents = componentsResults.map((c) => c.applyVersionResult);\n\n const componentIdsToRemove = allComponentsStatus\n .filter((componentStatus) => componentStatus.shouldBeRemoved)\n .map((c) => c.id.changeVersion(undefined));\n\n if (componentIdsToRemove.length) {\n await this.remove.removeLocallyByIds(componentIdsToRemove, { force: true });\n }\n\n return {\n components: appliedVersionComponents,\n removedComponents: componentIdsToRemove,\n version,\n failedComponents,\n leftUnresolvedConflicts,\n newFromLane: newFromLane?.map((n) => n.toString()),\n newFromLaneAdded,\n installationError: componentWriterResults?.installationError,\n compilationError: componentWriterResults?.compilationError,\n };\n }\n\n async checkoutByCLIValues(\n to: CheckoutTo,\n componentPattern: string,\n checkoutProps: CheckoutProps\n ): Promise<ApplyVersionResults> {\n this.logger.setStatusLine(BEFORE_CHECKOUT);\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n await this.importer.importCurrentObjects(); // important. among others, it fetches the remote lane object and its new components.\n if (to === 'head') await this.makeLaneComponentsAvailableOnMain();\n await this.parseValues(to, componentPattern, checkoutProps);\n const checkoutResults = await this.checkout(checkoutProps);\n await consumer.onDestroy();\n return checkoutResults;\n }\n\n private async syncNewComponents({ ids, head }: CheckoutProps) {\n if (!head) return;\n const notExported = ids?.filter((id) => !id._legacy.hasScope()).map((id) => id._legacy.changeScope(id.scope));\n const scopeComponentsImporter = this.workspace.consumer.scope.scopeImporter;\n try {\n await scopeComponentsImporter.importWithoutDeps(BitIds.fromArray(notExported || []).toVersionLatest(), {\n cache: false,\n });\n } catch (err) {\n // don't stop the process. it's possible that the scope doesn't exist yet because these are new components\n this.logger.error(`unable to sync new components, if these components are really new, ignore the error`, err);\n }\n }\n\n private async makeLaneComponentsAvailableOnMain() {\n const unavailableOnMain = await this.workspace.getUnavailableOnMainComponents();\n if (!unavailableOnMain.length) return;\n this.workspace.bitMap.makeComponentsAvailableOnMain(unavailableOnMain);\n }\n\n private async parseValues(to: CheckoutTo, componentPattern: string, checkoutProps: CheckoutProps) {\n if (to === HEAD) checkoutProps.head = true;\n else if (to === LATEST) checkoutProps.latest = true;\n else if (to === 'reset') checkoutProps.reset = true;\n else {\n if (!BitId.isValidVersion(to)) throw new BitError(`the specified version \"${to}\" is not a valid version`);\n checkoutProps.version = to;\n }\n if (checkoutProps.head && !componentPattern) {\n if (checkoutProps.all) {\n this.logger.console(`\"--all\" is deprecated for \"bit checkout ${HEAD}\", please omit it.`);\n }\n checkoutProps.all = true;\n }\n if (checkoutProps.latest && !componentPattern) {\n if (checkoutProps.all) {\n this.logger.console(`\"--all\" is deprecated for \"bit checkout ${LATEST}\", please omit it.`);\n }\n checkoutProps.all = true;\n }\n if (componentPattern && checkoutProps.all) {\n throw new GeneralError('please specify either [component-pattern] or --all, not both');\n }\n if (!componentPattern && !checkoutProps.all) {\n throw new GeneralError('please specify [component-pattern] or use --all flag');\n }\n if (checkoutProps.workspaceOnly && !checkoutProps.head) {\n throw new BitError(`--workspace-only flag can only be used with \"head\" (bit checkout head --workspace-only)`);\n }\n const idsOnWorkspace = componentPattern\n ? await this.workspace.idsByPattern(componentPattern)\n : await this.workspace.listIds();\n const currentLane = await this.workspace.consumer.getCurrentLaneObject();\n const currentLaneIds = currentLane?.toBitIds();\n const ids = currentLaneIds\n ? idsOnWorkspace.filter((id) => currentLaneIds.hasWithoutVersion(id._legacy))\n : idsOnWorkspace;\n checkoutProps.ids = ids.map((id) => (checkoutProps.head || checkoutProps.latest ? id.changeVersion(LATEST) : id));\n }\n\n private async getNewComponentsFromLane(ids: ComponentID[]): Promise<ComponentID[]> {\n // current lane object is up to date due to the previous `importCurrentObjects()` call\n const lane = await this.workspace.consumer.getCurrentLaneObject();\n if (!lane) {\n return [];\n }\n const laneBitIds = lane.toBitIds();\n const newIds = laneBitIds.filter((bitId) => !ids.find((id) => id._legacy.isEqualWithoutVersion(bitId)));\n const newComponentIds = await this.workspace.resolveMultipleComponentIds(newIds);\n const nonRemovedNewIds: ComponentID[] = [];\n await Promise.all(\n newComponentIds.map(async (id) => {\n const isRemoved = await this.workspace.scope.isComponentRemoved(id);\n if (!isRemoved) nonRemovedNewIds.push(id);\n })\n );\n return nonRemovedNewIds;\n }\n\n private async getComponentStatusBeforeMergeAttempt(\n component: ConsumerComponent,\n checkoutProps: CheckoutProps\n ): Promise<ComponentStatusBeforeMergeAttempt> {\n const consumer = this.workspace.consumer;\n const { version, head: headVersion, reset, latest: latestVersion, versionPerId } = checkoutProps;\n const repo = consumer.scope.objects;\n const componentModel = await consumer.scope.getModelComponentIfExist(component.id);\n const componentStatus: ComponentStatusBeforeMergeAttempt = { id: component.id };\n const returnFailure = (msg: string, unchangedLegitimately = false) => {\n componentStatus.failureMessage = msg;\n componentStatus.unchangedLegitimately = unchangedLegitimately;\n return componentStatus;\n };\n if (!componentModel) {\n return returnFailure(`component ${component.id.toString()} is new, no version to checkout`, true);\n }\n const unmerged = repo.unmergedComponents.getEntry(component.name);\n if (!reset && unmerged) {\n return returnFailure(\n `component ${component.id.toStringWithoutVersion()} is in during-merge state, please snap/tag it first (or use bit merge --resolve/--abort)`\n );\n }\n const getNewVersion = async (): Promise<string> => {\n if (reset) return component.id.version as string;\n\n if (headVersion) return componentModel.headIncludeRemote(repo);\n if (latestVersion) {\n const latest = componentModel.latestVersionIfExist();\n return latest || componentModel.headIncludeRemote(repo);\n }\n if (versionPerId) {\n return versionPerId.find((id) => id._legacy.isEqualWithoutVersion(component.id))?.version as string;\n }\n\n // @ts-ignore if !reset the version is defined\n return version;\n };\n const newVersion = await getNewVersion();\n if (version && !headVersion) {\n const hasVersion = await componentModel.hasVersion(version, repo);\n if (!hasVersion)\n return returnFailure(`component ${component.id.toStringWithoutVersion()} doesn't have version ${version}`);\n }\n const existingBitMapId = consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const currentlyUsedVersion = existingBitMapId.version;\n if (!currentlyUsedVersion) {\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is new`);\n }\n if (version && currentlyUsedVersion === version) {\n // it won't be relevant for 'reset' as it doesn't have a version\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is already at version ${version}`, true);\n }\n if (headVersion && currentlyUsedVersion === newVersion) {\n return returnFailure(\n `component ${component.id.toStringWithoutVersion()} is already at the latest version, which is ${newVersion}`,\n true\n );\n }\n if (!reset) {\n const divergeDataForMergePending = await componentModel.getDivergeDataForMergePending(repo);\n const isMergePending = divergeDataForMergePending.isDiverged();\n if (isMergePending) {\n return returnFailure(`component is merge-pending and cannot be checked out, run \"bit status\" for more info`);\n }\n }\n const currentVersionObject: Version = await componentModel.loadVersion(currentlyUsedVersion, repo);\n const isModified = await consumer.isComponentModified(currentVersionObject, component);\n if (!isModified && reset) {\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is not modified`, true);\n }\n\n const versionRef = componentModel.getRef(newVersion);\n if (!versionRef) throw new Error(`unable to get ref ${newVersion} from ${componentModel.id()}`);\n const componentVersion = (await consumer.scope.getObject(versionRef.hash)) as Version | undefined;\n if (componentVersion?.isRemoved() && existingBitMapId) {\n componentStatus.shouldBeRemoved = true;\n return returnFailure(`component has been removed`, true);\n }\n\n const newId = component.id.changeVersion(newVersion);\n\n if (reset || !isModified) {\n // if the component is not modified, no need to try merge the files, they will be written later on according to the\n // checked out version. same thing when no version is specified, it'll be reset to the model-version later.\n return { currentComponent: component, componentFromModel: componentVersion, id: newId };\n }\n\n const propsForMerge = {\n currentlyUsedVersion,\n componentModel,\n };\n\n return { currentComponent: component, componentFromModel: componentVersion, id: newId, propsForMerge };\n }\n\n private async getMergeStatus({\n currentComponent: componentFromFS,\n componentFromModel,\n id,\n propsForMerge,\n }: ComponentStatusBeforeMergeAttempt): Promise<ComponentStatus> {\n if (!propsForMerge) throw new Error(`propsForMerge is missing for ${id.toString()}`);\n if (!componentFromFS) throw new Error(`componentFromFS is missing for ${id.toString()}`);\n const consumer = this.workspace.consumer;\n const repo = consumer.scope.objects;\n const { currentlyUsedVersion, componentModel } = propsForMerge;\n\n // this is tricky. imagine the user is 0.0.2+modification and wants to checkout to 0.0.1.\n // the base is 0.0.1, as it's the common version for 0.0.1 and 0.0.2. however, if we let git merge-file use the 0.0.1\n // as the base, then, it'll get the changes done since 0.0.1 to 0.0.1, which is nothing, and put them on top of\n // 0.0.2+modification. in other words, it won't make any change.\n // this scenario of checking out while there are modified files, is forbidden in Git. here, we want to simulate a similar\n // experience of \"git stash\", then \"git checkout\", then \"git stash pop\". practically, we want the changes done on 0.0.2\n // to be added to 0.0.1\n // if there is no modification, it doesn't go the threeWayMerge anyway, so it doesn't matter what the base is.\n const baseVersion = currentlyUsedVersion;\n const newVersion = id.version as string;\n const baseComponent: Version = await componentModel.loadVersion(baseVersion, repo);\n const otherComponent: Version = await componentModel.loadVersion(newVersion, repo);\n const mergeResults = await threeWayMerge({\n consumer,\n otherComponent,\n otherLabel: newVersion,\n currentComponent: componentFromFS,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n\n return { currentComponent: componentFromFS, componentFromModel, id, mergeResults };\n }\n\n static slots = [];\n static dependencies = [CLIAspect, WorkspaceAspect, LoggerAspect, ComponentWriterAspect, ImporterAspect, RemoveAspect];\n\n static runtime = MainRuntime;\n\n static async provider([cli, workspace, loggerMain, compWriter, importer, remove]: [\n CLIMain,\n Workspace,\n LoggerMain,\n ComponentWriterMain,\n ImporterMain,\n RemoveMain\n ]) {\n const logger = loggerMain.createLogger(CheckoutAspect.id);\n const checkoutMain = new CheckoutMain(workspace, logger, compWriter, importer, remove);\n cli.register(new CheckoutCmd(checkoutMain));\n return checkoutMain;\n }\n}\n\nCheckoutAspect.addRuntime(CheckoutMain);\n\nexport default CheckoutMain;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["CheckoutMain","constructor","workspace","logger","componentWriter","importer","remove","checkout","checkoutProps","consumer","version","ids","promptMergeOptions","syncNewComponents","bitIds","BitIds","fromArray","map","id","_legacy","components","loadComponents","allComponentStatusBeforeMerge","Promise","all","component","getComponentStatusBeforeMergeAttempt","compsNeedMerge","filter","c","propsForMerge","compsNotNeedMerge","toImport","compStatus","idsToImport","push","changeVersion","currentlyUsedVersion","flat","scope","legacyScope","scopeImporter","importManyIfMissingWithoutDeps","getComponentsStatusOfMergeNeeded","tmp","Tmp","afterMergeAttempt","getMergeStatus","clear","err","compStatusMergeNeeded","allComponentsStatus","componentWithConflict","find","mergeResults","hasConflicts","mergeStrategy","GeneralError","toStringWithoutVersion","getMergeStrategyInteractive","failedComponents","componentStatus","failureMessage","shouldBeRemoved","unchangedLegitimately","succeededComponents","checkoutPropsLegacy","componentsResults","mapSeries","currentComponent","componentFromFS","applyVersion","markFilesToBeRemovedIfNeeded","componentsLegacy","compact","newFromLane","newFromLaneAdded","head","getNewComponentsFromLane","workspaceOnly","compsNewFromLane","loadComponentFromModelImportIfNeeded","leftUnresolvedConflicts","componentWriterResults","length","manyComponentsWriterOpts","skipDependencyInstallation","skipNpmInstall","verbose","resetConfig","reset","skipUpdatingBitMap","skipUpdatingBitmap","writeMany","deleteFilesIfNeeded","appliedVersionComponents","applyVersionResult","componentIdsToRemove","undefined","removeLocallyByIds","force","removedComponents","n","toString","installationError","compilationError","checkoutByCLIValues","to","componentPattern","revert","setStatusLine","BEFORE_CHECKOUT","OutsideWorkspaceError","importCurrentObjects","makeLaneComponentsAvailableOnMain","parseValues","checkoutResults","onDestroy","notExported","hasScope","changeScope","scopeComponentsImporter","importWithoutDeps","toVersionLatest","cache","error","unavailableOnMain","getUnavailableOnMainComponents","bitMap","makeComponentsAvailableOnMain","HEAD","LATEST","latest","main","BitId","isValidVersion","BitError","console","idsOnWorkspace","idsByPattern","listIds","currentLane","getCurrentLaneObject","currentLaneIds","toBitIds","hasWithoutVersion","lane","laneBitIds","newIds","bitId","isEqualWithoutVersion","newComponentIds","resolveMultipleComponentIds","nonRemovedNewIds","isRemoved","isComponentRemoved","headVersion","latestVersion","versionPerId","repo","objects","componentModel","getModelComponentIfExist","returnFailure","msg","unmerged","unmergedComponents","getEntry","name","getNewVersion","headIncludeRemote","latestVersionIfExist","newVersion","hasVersion","existingBitMapId","getBitId","ignoreVersion","divergeDataForMergePending","getDivergeDataForMergePending","isMergePending","isDiverged","currentVersionObject","loadVersion","isModified","isComponentModified","versionRef","getRef","Error","componentVersion","getObject","hash","newId","componentFromModel","baseVersion","baseComponent","otherComponent","threeWayMerge","otherLabel","currentLabel","provider","cli","loggerMain","compWriter","createLogger","CheckoutAspect","checkoutMain","register","CheckoutCmd","RevertCmd","CLIAspect","WorkspaceAspect","LoggerAspect","ComponentWriterAspect","ImporterAspect","RemoveAspect","MainRuntime","addRuntime"],"sources":["checkout.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { BitId } from '@teambit/legacy-bit-id';\nimport { BitError } from '@teambit/bit-error';\nimport { compact } from 'lodash';\nimport { BEFORE_CHECKOUT } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport RemoveAspect, { RemoveMain } from '@teambit/remove';\nimport { ApplyVersionResults } from '@teambit/merging';\nimport ImporterAspect, { ImporterMain } from '@teambit/importer';\nimport { HEAD, LATEST } from '@teambit/legacy/dist/constants';\nimport { ComponentWriterAspect, ComponentWriterMain } from '@teambit/component-writer';\nimport {\n FailedComponents,\n getMergeStrategyInteractive,\n MergeStrategy,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport mapSeries from 'p-map-series';\nimport { BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Version, ModelComponent } from '@teambit/legacy/dist/scope/models';\nimport { Tmp } from '@teambit/legacy/dist/scope/repositories';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport { ComponentID } from '@teambit/component-id';\nimport { CheckoutCmd } from './checkout-cmd';\nimport { CheckoutAspect } from './checkout.aspect';\nimport {\n applyVersion,\n markFilesToBeRemovedIfNeeded,\n ComponentStatus,\n deleteFilesIfNeeded,\n ComponentStatusBase,\n} from './checkout-version';\nimport { RevertCmd } from './revert-cmd';\n\nexport type CheckoutProps = {\n version?: string; // if reset/head/latest is true, the version is undefined\n ids?: ComponentID[];\n head?: boolean;\n latest?: boolean;\n main?: boolean; // relevant for \"revert\" only\n promptMergeOptions?: boolean;\n mergeStrategy?: MergeStrategy | null;\n verbose?: boolean;\n skipNpmInstall?: boolean;\n reset?: boolean; // remove local changes. if set, the version is undefined.\n revert?: boolean;\n all?: boolean; // checkout all ids\n isLane?: boolean;\n workspaceOnly?: boolean;\n versionPerId?: ComponentID[]; // if given, the ComponentID.version is the version to checkout to.\n skipUpdatingBitmap?: boolean; // needed for stash\n};\n\nexport type ComponentStatusBeforeMergeAttempt = ComponentStatusBase & {\n failureMessage?: string;\n unchangedLegitimately?: boolean; // failed to checkout but for a legitimate reason, such as, up-to-date\n propsForMerge?: {\n currentlyUsedVersion: string;\n componentModel: ModelComponent;\n };\n};\n\ntype CheckoutTo = 'head' | 'reset' | 'main' | string;\n\nexport class CheckoutMain {\n constructor(\n private workspace: Workspace,\n private logger: Logger,\n private componentWriter: ComponentWriterMain,\n private importer: ImporterMain,\n private remove: RemoveMain\n ) {}\n\n async checkout(checkoutProps: CheckoutProps): Promise<ApplyVersionResults> {\n const consumer = this.workspace.consumer;\n const { version, ids, promptMergeOptions } = checkoutProps;\n await this.syncNewComponents(checkoutProps);\n const bitIds = BitIds.fromArray(ids?.map((id) => id._legacy) || []);\n const { components } = await consumer.loadComponents(bitIds);\n\n const allComponentStatusBeforeMerge = await Promise.all(\n components.map((component) => this.getComponentStatusBeforeMergeAttempt(component, checkoutProps))\n );\n const compsNeedMerge = allComponentStatusBeforeMerge.filter((c) => c.propsForMerge);\n const compsNotNeedMerge = allComponentStatusBeforeMerge.filter((c) => !c.propsForMerge) as ComponentStatus[];\n\n // in case the requested versions to checkout don't exist locally, import them.\n const toImport = allComponentStatusBeforeMerge\n .map((compStatus) => {\n const idsToImport = [compStatus.id];\n if (compStatus.propsForMerge) {\n idsToImport.push(compStatus.id.changeVersion(compStatus.propsForMerge.currentlyUsedVersion));\n }\n return idsToImport;\n })\n .flat();\n await this.workspace.scope.legacyScope.scopeImporter.importManyIfMissingWithoutDeps({\n ids: BitIds.fromArray(toImport),\n });\n\n const getComponentsStatusOfMergeNeeded = async (): Promise<ComponentStatus[]> => {\n const tmp = new Tmp(consumer.scope);\n try {\n const afterMergeAttempt = await Promise.all(compsNeedMerge.map((c) => this.getMergeStatus(c)));\n await tmp.clear();\n return afterMergeAttempt;\n } catch (err: any) {\n await tmp.clear();\n throw err;\n }\n };\n\n const compStatusMergeNeeded = await getComponentsStatusOfMergeNeeded();\n\n const allComponentsStatus: ComponentStatus[] = [...compStatusMergeNeeded, ...compsNotNeedMerge];\n const componentWithConflict = allComponentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict) {\n if (!promptMergeOptions && !checkoutProps.mergeStrategy) {\n throw new GeneralError(\n `automatic merge has failed for component ${componentWithConflict.id.toStringWithoutVersion()}.\\nplease use \"--manual\" to manually merge changes or use \"--theirs / --ours\" to choose one of the conflicted versions`\n );\n }\n if (!checkoutProps.mergeStrategy) checkoutProps.mergeStrategy = await getMergeStrategyInteractive();\n }\n const failedComponents: FailedComponents[] = allComponentsStatus\n .filter((componentStatus) => componentStatus.failureMessage)\n .filter((componentStatus) => !componentStatus.shouldBeRemoved)\n .map((componentStatus) => ({\n id: componentStatus.id,\n failureMessage: componentStatus.failureMessage as string,\n unchangedLegitimately: componentStatus.unchangedLegitimately,\n }));\n\n const succeededComponents = allComponentsStatus.filter((componentStatus) => !componentStatus.failureMessage);\n // do not use Promise.all for applyVersion. otherwise, it'll write all components in parallel,\n // which can be an issue when some components are also dependencies of others\n const checkoutPropsLegacy = { ...checkoutProps, ids: checkoutProps.ids?.map((id) => id._legacy) };\n const componentsResults = await mapSeries(\n succeededComponents,\n ({ id, currentComponent: componentFromFS, mergeResults }) => {\n return applyVersion(consumer, id, componentFromFS, mergeResults, checkoutPropsLegacy);\n }\n );\n\n markFilesToBeRemovedIfNeeded(succeededComponents, componentsResults);\n\n const componentsLegacy = compact(componentsResults.map((c) => c.component));\n\n let newFromLane: ComponentID[] | undefined;\n let newFromLaneAdded = false;\n if (checkoutProps.head) {\n newFromLane = await this.getNewComponentsFromLane(checkoutProps.ids || []);\n if (!checkoutProps.workspaceOnly) {\n const compsNewFromLane = await Promise.all(\n newFromLane.map((id) => consumer.loadComponentFromModelImportIfNeeded(id._legacy))\n );\n componentsLegacy.push(...compsNewFromLane);\n newFromLaneAdded = true;\n }\n }\n\n const leftUnresolvedConflicts = componentWithConflict && checkoutProps.mergeStrategy === 'manual';\n let componentWriterResults;\n if (componentsLegacy.length) {\n const manyComponentsWriterOpts = {\n components: componentsLegacy,\n skipDependencyInstallation: checkoutProps.skipNpmInstall || leftUnresolvedConflicts,\n verbose: checkoutProps.verbose,\n resetConfig: checkoutProps.reset,\n skipUpdatingBitMap: checkoutProps.skipUpdatingBitmap,\n };\n componentWriterResults = await this.componentWriter.writeMany(manyComponentsWriterOpts);\n await deleteFilesIfNeeded(componentsResults, this.workspace);\n }\n\n const appliedVersionComponents = componentsResults.map((c) => c.applyVersionResult);\n\n const componentIdsToRemove = allComponentsStatus\n .filter((componentStatus) => componentStatus.shouldBeRemoved)\n .map((c) => c.id.changeVersion(undefined));\n\n if (componentIdsToRemove.length) {\n await this.remove.removeLocallyByIds(componentIdsToRemove, { force: true });\n }\n\n return {\n components: appliedVersionComponents,\n removedComponents: componentIdsToRemove,\n version,\n failedComponents,\n leftUnresolvedConflicts,\n newFromLane: newFromLane?.map((n) => n.toString()),\n newFromLaneAdded,\n installationError: componentWriterResults?.installationError,\n compilationError: componentWriterResults?.compilationError,\n };\n }\n\n async checkoutByCLIValues(\n to: CheckoutTo,\n componentPattern: string,\n checkoutProps: CheckoutProps\n ): Promise<ApplyVersionResults> {\n const { revert } = checkoutProps;\n this.logger.setStatusLine(revert ? 'reverting components...' : BEFORE_CHECKOUT);\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n await this.importer.importCurrentObjects(); // important. among others, it fetches the remote lane object and its new components.\n if (to === 'head') await this.makeLaneComponentsAvailableOnMain();\n await this.parseValues(to, componentPattern, checkoutProps);\n const checkoutResults = await this.checkout(checkoutProps);\n await consumer.onDestroy();\n return checkoutResults;\n }\n\n private async syncNewComponents({ ids, head }: CheckoutProps) {\n if (!head) return;\n const notExported = ids?.filter((id) => !id._legacy.hasScope()).map((id) => id._legacy.changeScope(id.scope));\n const scopeComponentsImporter = this.workspace.consumer.scope.scopeImporter;\n try {\n await scopeComponentsImporter.importWithoutDeps(BitIds.fromArray(notExported || []).toVersionLatest(), {\n cache: false,\n });\n } catch (err) {\n // don't stop the process. it's possible that the scope doesn't exist yet because these are new components\n this.logger.error(`unable to sync new components, if these components are really new, ignore the error`, err);\n }\n }\n\n private async makeLaneComponentsAvailableOnMain() {\n const unavailableOnMain = await this.workspace.getUnavailableOnMainComponents();\n if (!unavailableOnMain.length) return;\n this.workspace.bitMap.makeComponentsAvailableOnMain(unavailableOnMain);\n }\n\n private async parseValues(to: CheckoutTo, componentPattern: string, checkoutProps: CheckoutProps) {\n if (to === HEAD) checkoutProps.head = true;\n else if (to === LATEST) checkoutProps.latest = true;\n else if (to === 'reset') checkoutProps.reset = true;\n else if (to === 'main') checkoutProps.main = true;\n else {\n if (!BitId.isValidVersion(to)) throw new BitError(`the specified version \"${to}\" is not a valid version`);\n checkoutProps.version = to;\n }\n if (checkoutProps.head && !componentPattern) {\n if (checkoutProps.all) {\n this.logger.console(`\"--all\" is deprecated for \"bit checkout ${HEAD}\", please omit it.`);\n }\n checkoutProps.all = true;\n }\n if (checkoutProps.latest && !componentPattern) {\n if (checkoutProps.all) {\n this.logger.console(`\"--all\" is deprecated for \"bit checkout ${LATEST}\", please omit it.`);\n }\n checkoutProps.all = true;\n }\n if (componentPattern && checkoutProps.all) {\n throw new GeneralError('please specify either [component-pattern] or --all, not both');\n }\n if (!componentPattern && !checkoutProps.all) {\n throw new GeneralError('please specify [component-pattern] or use --all flag');\n }\n if (checkoutProps.workspaceOnly && !checkoutProps.head) {\n throw new BitError(`--workspace-only flag can only be used with \"head\" (bit checkout head --workspace-only)`);\n }\n if (checkoutProps.revert) {\n checkoutProps.skipUpdatingBitmap = true;\n }\n const idsOnWorkspace = componentPattern\n ? await this.workspace.idsByPattern(componentPattern)\n : await this.workspace.listIds();\n const currentLane = await this.workspace.consumer.getCurrentLaneObject();\n const currentLaneIds = currentLane?.toBitIds();\n const ids = currentLaneIds\n ? idsOnWorkspace.filter((id) => currentLaneIds.hasWithoutVersion(id._legacy))\n : idsOnWorkspace;\n checkoutProps.ids = ids.map((id) => (checkoutProps.head || checkoutProps.latest ? id.changeVersion(LATEST) : id));\n }\n\n private async getNewComponentsFromLane(ids: ComponentID[]): Promise<ComponentID[]> {\n // current lane object is up to date due to the previous `importCurrentObjects()` call\n const lane = await this.workspace.consumer.getCurrentLaneObject();\n if (!lane) {\n return [];\n }\n const laneBitIds = lane.toBitIds();\n const newIds = laneBitIds.filter((bitId) => !ids.find((id) => id._legacy.isEqualWithoutVersion(bitId)));\n const newComponentIds = await this.workspace.resolveMultipleComponentIds(newIds);\n const nonRemovedNewIds: ComponentID[] = [];\n await Promise.all(\n newComponentIds.map(async (id) => {\n const isRemoved = await this.workspace.scope.isComponentRemoved(id);\n if (!isRemoved) nonRemovedNewIds.push(id);\n })\n );\n return nonRemovedNewIds;\n }\n\n private async getComponentStatusBeforeMergeAttempt(\n component: ConsumerComponent,\n checkoutProps: CheckoutProps\n ): Promise<ComponentStatusBeforeMergeAttempt> {\n const consumer = this.workspace.consumer;\n const { version, head: headVersion, reset, revert, main, latest: latestVersion, versionPerId } = checkoutProps;\n const repo = consumer.scope.objects;\n const componentModel = await consumer.scope.getModelComponentIfExist(component.id);\n const componentStatus: ComponentStatusBeforeMergeAttempt = { id: component.id };\n const returnFailure = (msg: string, unchangedLegitimately = false) => {\n componentStatus.failureMessage = msg;\n componentStatus.unchangedLegitimately = unchangedLegitimately;\n return componentStatus;\n };\n if (!componentModel) {\n return returnFailure(`component ${component.id.toString()} is new, no version to checkout`, true);\n }\n if (main && !componentModel.head) {\n return returnFailure(`component ${component.id.toString()} is not available on main`);\n }\n const unmerged = repo.unmergedComponents.getEntry(component.name);\n if (!reset && unmerged) {\n return returnFailure(\n `component ${component.id.toStringWithoutVersion()} is in during-merge state, please snap/tag it first (or use bit merge --resolve/--abort)`\n );\n }\n const getNewVersion = async (): Promise<string> => {\n if (reset) return component.id.version as string;\n if (headVersion) return componentModel.headIncludeRemote(repo);\n // we verified previously that head exists in case of \"main\"\n if (main) return componentModel.head?.toString() as string;\n if (latestVersion) {\n const latest = componentModel.latestVersionIfExist();\n return latest || componentModel.headIncludeRemote(repo);\n }\n if (versionPerId) {\n return versionPerId.find((id) => id._legacy.isEqualWithoutVersion(component.id))?.version as string;\n }\n\n // if all above are false, the version is defined\n return version as string;\n };\n const newVersion = await getNewVersion();\n if (version && !headVersion) {\n const hasVersion = await componentModel.hasVersion(version, repo);\n if (!hasVersion)\n return returnFailure(`component ${component.id.toStringWithoutVersion()} doesn't have version ${version}`);\n }\n const existingBitMapId = consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const currentlyUsedVersion = existingBitMapId.version;\n if (!currentlyUsedVersion) {\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is new`);\n }\n if (version && currentlyUsedVersion === version) {\n // it won't be relevant for 'reset' as it doesn't have a version\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is already at version ${version}`, true);\n }\n if (headVersion && currentlyUsedVersion === newVersion) {\n return returnFailure(\n `component ${component.id.toStringWithoutVersion()} is already at the latest version, which is ${newVersion}`,\n true\n );\n }\n if (!reset) {\n const divergeDataForMergePending = await componentModel.getDivergeDataForMergePending(repo);\n const isMergePending = divergeDataForMergePending.isDiverged();\n if (isMergePending) {\n return returnFailure(`component is merge-pending and cannot be checked out, run \"bit status\" for more info`);\n }\n }\n const currentVersionObject: Version = await componentModel.loadVersion(currentlyUsedVersion, repo);\n const isModified = await consumer.isComponentModified(currentVersionObject, component);\n if (!isModified && reset) {\n return returnFailure(`component ${component.id.toStringWithoutVersion()} is not modified`, true);\n }\n\n const versionRef = componentModel.getRef(newVersion);\n if (!versionRef) throw new Error(`unable to get ref ${newVersion} from ${componentModel.id()}`);\n const componentVersion = (await consumer.scope.getObject(versionRef.hash)) as Version | undefined;\n if (componentVersion?.isRemoved() && existingBitMapId) {\n componentStatus.shouldBeRemoved = true;\n return returnFailure(`component has been removed`, true);\n }\n\n const newId = component.id.changeVersion(newVersion);\n\n if (reset || !isModified || revert) {\n // if the component is not modified, no need to try merge the files, they will be written later on according to the\n // checked out version. same thing when no version is specified, it'll be reset to the model-version later.\n return { currentComponent: component, componentFromModel: componentVersion, id: newId };\n }\n\n const propsForMerge = {\n currentlyUsedVersion,\n componentModel,\n };\n\n return { currentComponent: component, componentFromModel: componentVersion, id: newId, propsForMerge };\n }\n\n private async getMergeStatus({\n currentComponent: componentFromFS,\n componentFromModel,\n id,\n propsForMerge,\n }: ComponentStatusBeforeMergeAttempt): Promise<ComponentStatus> {\n if (!propsForMerge) throw new Error(`propsForMerge is missing for ${id.toString()}`);\n if (!componentFromFS) throw new Error(`componentFromFS is missing for ${id.toString()}`);\n const consumer = this.workspace.consumer;\n const repo = consumer.scope.objects;\n const { currentlyUsedVersion, componentModel } = propsForMerge;\n\n // this is tricky. imagine the user is 0.0.2+modification and wants to checkout to 0.0.1.\n // the base is 0.0.1, as it's the common version for 0.0.1 and 0.0.2. however, if we let git merge-file use the 0.0.1\n // as the base, then, it'll get the changes done since 0.0.1 to 0.0.1, which is nothing, and put them on top of\n // 0.0.2+modification. in other words, it won't make any change.\n // this scenario of checking out while there are modified files, is forbidden in Git. here, we want to simulate a similar\n // experience of \"git stash\", then \"git checkout\", then \"git stash pop\". practically, we want the changes done on 0.0.2\n // to be added to 0.0.1\n // if there is no modification, it doesn't go the threeWayMerge anyway, so it doesn't matter what the base is.\n const baseVersion = currentlyUsedVersion;\n const newVersion = id.version as string;\n const baseComponent: Version = await componentModel.loadVersion(baseVersion, repo);\n const otherComponent: Version = await componentModel.loadVersion(newVersion, repo);\n const mergeResults = await threeWayMerge({\n consumer,\n otherComponent,\n otherLabel: newVersion,\n currentComponent: componentFromFS,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n\n return { currentComponent: componentFromFS, componentFromModel, id, mergeResults };\n }\n\n static slots = [];\n static dependencies = [CLIAspect, WorkspaceAspect, LoggerAspect, ComponentWriterAspect, ImporterAspect, RemoveAspect];\n\n static runtime = MainRuntime;\n\n static async provider([cli, workspace, loggerMain, compWriter, importer, remove]: [\n CLIMain,\n Workspace,\n LoggerMain,\n ComponentWriterMain,\n ImporterMain,\n RemoveMain\n ]) {\n const logger = loggerMain.createLogger(CheckoutAspect.id);\n const checkoutMain = new CheckoutMain(workspace, logger, compWriter, importer, remove);\n cli.register(new CheckoutCmd(checkoutMain), new RevertCmd(checkoutMain));\n return checkoutMain;\n }\n}\n\nCheckoutAspect.addRuntime(CheckoutMain);\n\nexport default CheckoutMain;\n"],"mappings":"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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Command, CommandOptions } from '@teambit/cli';
|
|
2
|
+
import { CheckoutMain } from './checkout.main.runtime';
|
|
3
|
+
export declare class RevertCmd implements Command {
|
|
4
|
+
private checkout;
|
|
5
|
+
name: string;
|
|
6
|
+
arguments: {
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
9
|
+
}[];
|
|
10
|
+
description: string;
|
|
11
|
+
group: string;
|
|
12
|
+
alias: string;
|
|
13
|
+
options: CommandOptions;
|
|
14
|
+
loader: boolean;
|
|
15
|
+
constructor(checkout: CheckoutMain);
|
|
16
|
+
report([componentPattern, to]: [string, string], { verbose, skipDependencyInstallation, }: {
|
|
17
|
+
verbose?: boolean;
|
|
18
|
+
skipDependencyInstallation?: boolean;
|
|
19
|
+
}): Promise<string>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
require("core-js/modules/es.array.iterator.js");
|
|
5
|
+
require("core-js/modules/es.promise.js");
|
|
6
|
+
Object.defineProperty(exports, "__esModule", {
|
|
7
|
+
value: true
|
|
8
|
+
});
|
|
9
|
+
exports.RevertCmd = void 0;
|
|
10
|
+
function _defineProperty2() {
|
|
11
|
+
const data = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
12
|
+
_defineProperty2 = function () {
|
|
13
|
+
return data;
|
|
14
|
+
};
|
|
15
|
+
return data;
|
|
16
|
+
}
|
|
17
|
+
function _constants() {
|
|
18
|
+
const data = require("@teambit/legacy/dist/constants");
|
|
19
|
+
_constants = function () {
|
|
20
|
+
return data;
|
|
21
|
+
};
|
|
22
|
+
return data;
|
|
23
|
+
}
|
|
24
|
+
function _checkoutCmd() {
|
|
25
|
+
const data = require("./checkout-cmd");
|
|
26
|
+
_checkoutCmd = function () {
|
|
27
|
+
return data;
|
|
28
|
+
};
|
|
29
|
+
return data;
|
|
30
|
+
}
|
|
31
|
+
class RevertCmd {
|
|
32
|
+
constructor(checkout) {
|
|
33
|
+
this.checkout = checkout;
|
|
34
|
+
(0, _defineProperty2().default)(this, "name", 'revert <component-pattern> <to>');
|
|
35
|
+
(0, _defineProperty2().default)(this, "arguments", [{
|
|
36
|
+
name: 'component-pattern',
|
|
37
|
+
description: _constants().COMPONENT_PATTERN_HELP
|
|
38
|
+
}, {
|
|
39
|
+
name: 'to',
|
|
40
|
+
description: "permitted values: [main, specific-version]. 'main' - head version on main."
|
|
41
|
+
}]);
|
|
42
|
+
(0, _defineProperty2().default)(this, "description", 'replace the current component files by the specified version, leave the version intact');
|
|
43
|
+
(0, _defineProperty2().default)(this, "group", 'development');
|
|
44
|
+
(0, _defineProperty2().default)(this, "alias", '');
|
|
45
|
+
(0, _defineProperty2().default)(this, "options", [['v', 'verbose', 'showing verbose output for inspection'], ['x', 'skip-dependency-installation', 'do not install packages of the imported components']]);
|
|
46
|
+
(0, _defineProperty2().default)(this, "loader", true);
|
|
47
|
+
}
|
|
48
|
+
async report([componentPattern, to], {
|
|
49
|
+
verbose = false,
|
|
50
|
+
skipDependencyInstallation = false
|
|
51
|
+
}) {
|
|
52
|
+
return new (_checkoutCmd().CheckoutCmd)(this.checkout).report([to, componentPattern], {
|
|
53
|
+
verbose,
|
|
54
|
+
skipDependencyInstallation,
|
|
55
|
+
revert: true
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.RevertCmd = RevertCmd;
|
|
60
|
+
|
|
61
|
+
//# sourceMappingURL=revert-cmd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["RevertCmd","constructor","checkout","name","description","COMPONENT_PATTERN_HELP","report","componentPattern","to","verbose","skipDependencyInstallation","CheckoutCmd","revert"],"sources":["revert-cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { CheckoutMain } from './checkout.main.runtime';\nimport { CheckoutCmd } from './checkout-cmd';\n\nexport class RevertCmd implements Command {\n name = 'revert <component-pattern> <to>';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n {\n name: 'to',\n description: \"permitted values: [main, specific-version]. 'main' - head version on main.\",\n },\n ];\n description = 'replace the current component files by the specified version, leave the version intact';\n group = 'development';\n alias = '';\n options = [\n ['v', 'verbose', 'showing verbose output for inspection'],\n ['x', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private checkout: CheckoutMain) {}\n\n async report(\n [componentPattern, to]: [string, string],\n {\n verbose = false,\n skipDependencyInstallation = false,\n }: {\n verbose?: boolean;\n skipDependencyInstallation?: boolean;\n }\n ) {\n return new CheckoutCmd(this.checkout).report([to, componentPattern], {\n verbose,\n skipDependencyInstallation,\n revert: true,\n });\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEO,MAAMA,SAAS,CAAoB;EAqBxCC,WAAW,CAASC,QAAsB,EAAE;IAAA,KAAxBA,QAAsB,GAAtBA,QAAsB;IAAA,8CApBnC,iCAAiC;IAAA,mDAC5B,CACV;MACEC,IAAI,EAAE,mBAAmB;MACzBC,WAAW,EAAEC;IACf,CAAC,EACD;MACEF,IAAI,EAAE,IAAI;MACVC,WAAW,EAAE;IACf,CAAC,CACF;IAAA,qDACa,wFAAwF;IAAA,+CAC9F,aAAa;IAAA,+CACb,EAAE;IAAA,iDACA,CACR,CAAC,GAAG,EAAE,SAAS,EAAE,uCAAuC,CAAC,EACzD,CAAC,GAAG,EAAE,8BAA8B,EAAE,oDAAoD,CAAC,CAC5F;IAAA,gDACQ,IAAI;EAEgC;EAE7C,MAAME,MAAM,CACV,CAACC,gBAAgB,EAAEC,EAAE,CAAmB,EACxC;IACEC,OAAO,GAAG,KAAK;IACfC,0BAA0B,GAAG;EAI/B,CAAC,EACD;IACA,OAAO,KAAIC,0BAAW,EAAC,IAAI,CAACT,QAAQ,CAAC,CAACI,MAAM,CAAC,CAACE,EAAE,EAAED,gBAAgB,CAAC,EAAE;MACnEE,OAAO;MACPC,0BAA0B;MAC1BE,MAAM,EAAE;IACV,CAAC,CAAC;EACJ;AACF;AAAC"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/checkout",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.275",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/checkout",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "checkout",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.275"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"@teambit/legacy-bit-id": "0.0.423",
|
|
18
18
|
"@teambit/harmony": "0.4.6",
|
|
19
19
|
"@teambit/component-id": "0.0.427",
|
|
20
|
-
"@teambit/cli": "0.0.
|
|
21
|
-
"@teambit/merging": "0.0.
|
|
22
|
-
"@teambit/workspace": "0.0.
|
|
20
|
+
"@teambit/cli": "0.0.741",
|
|
21
|
+
"@teambit/merging": "0.0.421",
|
|
22
|
+
"@teambit/workspace": "0.0.1106",
|
|
23
23
|
"@teambit/bit-error": "0.0.402",
|
|
24
|
-
"@teambit/component-writer": "0.0.
|
|
25
|
-
"@teambit/importer": "0.0.
|
|
26
|
-
"@teambit/logger": "0.0.
|
|
27
|
-
"@teambit/remove": "0.0.
|
|
24
|
+
"@teambit/component-writer": "0.0.142",
|
|
25
|
+
"@teambit/importer": "0.0.535",
|
|
26
|
+
"@teambit/logger": "0.0.834",
|
|
27
|
+
"@teambit/remove": "0.0.283"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/lodash": "4.14.165",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@types/testing-library__jest-dom": "5.9.5"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@teambit/legacy": "1.0.
|
|
39
|
+
"@teambit/legacy": "1.0.522",
|
|
40
40
|
"react": "^16.8.0 || ^17.0.0",
|
|
41
41
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
42
42
|
},
|
|
Binary file
|
|
File without changes
|