@teambit/lanes 1.0.261 → 1.0.262
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/artifacts/__bit_junit.xml +9 -9
- package/artifacts/preview/teambit_lanes_lanes-preview.js +1 -1
- package/artifacts/schema.json +827 -785
- package/dist/lanes.main.runtime.d.ts +2 -1
- package/dist/lanes.main.runtime.js +4 -2
- package/dist/lanes.main.runtime.js.map +1 -1
- package/dist/{preview-1714706485042.js → preview-1714792898222.js} +2 -2
- package/dist/switch-lanes.d.ts +2 -0
- package/dist/switch-lanes.js +27 -13
- package/dist/switch-lanes.js.map +1 -1
- package/dist/switch.cmd.d.ts +2 -1
- package/dist/switch.cmd.js +4 -2
- package/dist/switch.cmd.js.map +1 -1
- package/package.json +16 -16
package/dist/switch-lanes.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_laneId","data","require","_componentId","_bitError","_createLane","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","obj","key","value","_toPropertyKey","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","LaneSwitcher","constructor","workspace","logger","switchProps","checkoutProps","lanes","consumer","switch","setStatusLine","isOnMain","throwForStagedComponents","populateSwitchProps","bitMapIds","bitmapIdsFromCurrentLaneIncludeRemoved","idsToSwitch","ids","map","id","bitMapId","searchWithoutVersion","allowAddingComponentsFromScope","versionPerId","resolveMultipleComponentIds","lane","laneToSwitchTo","results","checkout","saveLanesData","onDestroy","laneId","scope","parseLaneIdFromString","laneName","localLane","loadLane","mainIds","getIdsOfDefaultLane","isDefault","populatePropsAccordingToDefaultLane","laneIds","populatePropsAccordingToLocalLane","populatePropsAccordingToRemoteLane","idsOnLaneOnly","find","isEqualWithoutVersion","idsOnMainOnly","laneBitIds","pattern","bitMap","getAllBitIdsFromAllLanes","BitError","allIds","patternIds","filterIdsFromPoolIdsByPattern","remoteLaneId","laneIdToSwitchTo","debug","toString","throwForSwitchingToCurrentLane","remoteLane","fetchLaneWithItsComponents","name","localTrackedLane","getAliasByLaneId","undefined","components","l","changeVersion","head","LaneId","from","DEFAULT_LANE","toLaneId","c","getCurrentLaneId","isEqual","laneIdStr","localLaneName","alias","trackLane","remoteScope","setCurrentLane","isNew","syncWithIds","ComponentIdList","fromArray","exports"],"sources":["switch-lanes.ts"],"sourcesContent":["import { Consumer } from '@teambit/legacy/dist/consumer';\nimport { LaneId, DEFAULT_LANE } from '@teambit/lane-id';\nimport { ComponentID, ComponentIdList } from '@teambit/component-id';\nimport { ApplyVersionResults } from '@teambit/merging';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { CheckoutProps } from '@teambit/checkout';\nimport { Workspace } from '@teambit/workspace';\nimport { Logger } from '@teambit/logger';\nimport { BitError } from '@teambit/bit-error';\nimport { LanesMain } from './lanes.main.runtime';\nimport { throwForStagedComponents } from './create-lane';\n\nexport type SwitchProps = {\n laneName: string;\n ids?: ComponentID[];\n laneBitIds?: ComponentID[]; // only needed for the deprecated onLanesOnly prop. once this prop is removed, this prop can be removed as well.\n pattern?: string;\n existingOnWorkspaceOnly?: boolean;\n remoteLane?: Lane;\n localTrackedLane?: string;\n alias?: string;\n};\n\nexport class LaneSwitcher {\n private consumer: Consumer;\n private laneIdToSwitchTo: LaneId; // populated by `this.populateSwitchProps()`\n private laneToSwitchTo: Lane | undefined; // populated by `this.populateSwitchProps()`, if default-lane, it's undefined\n constructor(\n private workspace: Workspace,\n private logger: Logger,\n private switchProps: SwitchProps,\n private checkoutProps: CheckoutProps,\n private lanes: LanesMain\n ) {\n this.consumer = this.workspace.consumer;\n }\n\n async switch(): Promise<ApplyVersionResults> {\n this.logger.setStatusLine(`switching lanes`);\n if (this.workspace.isOnMain()) {\n await throwForStagedComponents(this.consumer);\n }\n await this.populateSwitchProps();\n const bitMapIds = this.workspace.consumer.bitmapIdsFromCurrentLaneIncludeRemoved;\n const idsToSwitch = this.switchProps.ids || [];\n const ids = idsToSwitch.map((id) => {\n const bitMapId = bitMapIds.searchWithoutVersion(id);\n return bitMapId || id;\n });\n\n const checkoutProps: CheckoutProps = {\n ...this.checkoutProps,\n ids,\n allowAddingComponentsFromScope: true,\n versionPerId: await this.workspace.resolveMultipleComponentIds(idsToSwitch),\n lane: this.laneToSwitchTo,\n };\n\n const results = await this.lanes.checkout.checkout(checkoutProps);\n\n await this.saveLanesData();\n await this.consumer.onDestroy('lane-switch');\n\n return results;\n }\n\n private async populateSwitchProps() {\n const laneId = await this.consumer.scope.lanes.parseLaneIdFromString(this.switchProps.laneName);\n\n const localLane = await this.consumer.scope.loadLane(laneId);\n const mainIds = await this.consumer.getIdsOfDefaultLane();\n if (laneId.isDefault()) {\n await this.populatePropsAccordingToDefaultLane();\n this.switchProps.ids = mainIds;\n } else {\n const laneIds = localLane\n ? this.populatePropsAccordingToLocalLane(localLane)\n : await this.populatePropsAccordingToRemoteLane(laneId);\n const idsOnLaneOnly = laneIds.filter((id) => !mainIds.find((i) => i.isEqualWithoutVersion(id)));\n const idsOnMainOnly = mainIds.filter((id) => !laneIds.find((i) => i.isEqualWithoutVersion(id)));\n this.switchProps.ids = [...idsOnMainOnly, ...laneIds];\n this.switchProps.laneBitIds = idsOnLaneOnly;\n }\n\n if (this.switchProps.pattern) {\n if (this.consumer.bitMap.getAllBitIdsFromAllLanes().length) {\n // if the workspace is not empty, it's possible that it has components from lane-x, and is now switching\n // partially to lane-y, while lane-y has the same components as lane-x. in which case, the user ends up with\n // an invalid state of components from lane-x and lane-y together.\n throw new BitError('error: use --pattern only when the workspace is empty');\n }\n const allIds = await this.workspace.resolveMultipleComponentIds(this.switchProps.ids || []);\n const patternIds = await this.workspace.filterIdsFromPoolIdsByPattern(this.switchProps.pattern, allIds);\n this.switchProps.ids = patternIds.map((id) => id);\n }\n }\n\n private async populatePropsAccordingToRemoteLane(remoteLaneId: LaneId): Promise<ComponentID[]> {\n this.laneIdToSwitchTo = remoteLaneId;\n this.logger.debug(`populatePropsAccordingToRemoteLane, remoteLaneId: ${remoteLaneId.toString()}`);\n this.throwForSwitchingToCurrentLane();\n const remoteLane = await this.lanes.fetchLaneWithItsComponents(remoteLaneId);\n this.switchProps.laneName = remoteLaneId.name;\n this.switchProps.localTrackedLane = this.consumer.scope.lanes.getAliasByLaneId(remoteLaneId) || undefined;\n this.switchProps.remoteLane = remoteLane;\n this.laneToSwitchTo = remoteLane;\n this.logger.debug(`populatePropsAccordingToRemoteLane, completed`);\n return remoteLane.components.map((l) => l.id.changeVersion(l.head.toString()));\n }\n\n private async populatePropsAccordingToDefaultLane() {\n this.laneIdToSwitchTo = LaneId.from(DEFAULT_LANE, this.consumer.scope.name);\n this.throwForSwitchingToCurrentLane();\n }\n\n private populatePropsAccordingToLocalLane(localLane: Lane): ComponentID[] {\n this.laneIdToSwitchTo = localLane.toLaneId();\n this.laneToSwitchTo = localLane;\n this.throwForSwitchingToCurrentLane();\n return localLane.components.map((c) => c.id.changeVersion(c.head.toString()));\n }\n\n private throwForSwitchingToCurrentLane() {\n if (this.consumer.getCurrentLaneId().isEqual(this.laneIdToSwitchTo)) {\n const laneIdStr = this.laneIdToSwitchTo.isDefault()\n ? this.laneIdToSwitchTo.name\n : this.laneIdToSwitchTo.toString();\n throw new BitError(`already checked out to \"${laneIdStr}\".\nto be up to date with the remote lane, please run \"bit checkout head\"\"`);\n }\n }\n\n private async saveLanesData() {\n const localLaneName = this.switchProps.alias || this.laneIdToSwitchTo.name;\n if (this.switchProps.remoteLane) {\n if (!this.switchProps.localTrackedLane) {\n this.consumer.scope.lanes.trackLane({\n localLane: localLaneName,\n remoteLane: this.laneIdToSwitchTo.name,\n remoteScope: this.laneIdToSwitchTo.scope,\n });\n }\n }\n\n this.consumer.setCurrentLane(this.laneIdToSwitchTo, !this.laneToSwitchTo?.isNew);\n this.consumer.bitMap.syncWithIds(\n ComponentIdList.fromArray(this.switchProps.ids || []),\n ComponentIdList.fromArray(this.switchProps.laneBitIds || [])\n );\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"names":["_laneId","data","require","_componentId","_bitError","_createLane","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","obj","key","value","_toPropertyKey","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","LaneSwitcher","constructor","workspace","logger","switchProps","checkoutProps","lanes","consumer","switch","setStatusLine","isOnMain","throwForStagedComponents","populateSwitchProps","bitMapIds","bitmapIdsFromCurrentLaneIncludeRemoved","idsToSwitch","ids","map","id","bitMapId","searchWithoutVersion","allowAddingComponentsFromScope","versionPerId","resolveMultipleComponentIds","lane","laneToSwitchTo","results","checkout","saveLanesData","onDestroy","laneId","scope","parseLaneIdFromString","laneName","localLane","loadLane","getMainIds","mainIds","getIdsOfDefaultLane","head","legacyScope","scopeImporter","importWithoutDeps","cache","isDefault","populatePropsAccordingToDefaultLane","laneIds","populatePropsAccordingToLocalLane","populatePropsAccordingToRemoteLane","idsOnLaneOnly","find","isEqualWithoutVersion","idsOnMainOnly","laneBitIds","populateIdsAccordingToPattern","pattern","bitMap","getAllBitIdsFromAllLanes","BitError","allIds","patternIds","filterIdsFromPoolIdsByPattern","remoteLaneId","laneIdToSwitchTo","debug","toString","throwForSwitchingToCurrentLane","remoteLane","fetchLaneWithItsComponents","name","localTrackedLane","getAliasByLaneId","undefined","components","l","changeVersion","LaneId","from","DEFAULT_LANE","toLaneId","c","getCurrentLaneId","isEqual","laneIdStr","localLaneName","alias","trackLane","remoteScope","setCurrentLane","isNew","syncWithIds","ComponentIdList","fromArray","exports"],"sources":["switch-lanes.ts"],"sourcesContent":["import { Consumer } from '@teambit/legacy/dist/consumer';\nimport { LaneId, DEFAULT_LANE } from '@teambit/lane-id';\nimport { ComponentID, ComponentIdList } from '@teambit/component-id';\nimport { ApplyVersionResults } from '@teambit/merging';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { CheckoutProps } from '@teambit/checkout';\nimport { Workspace } from '@teambit/workspace';\nimport { Logger } from '@teambit/logger';\nimport { BitError } from '@teambit/bit-error';\nimport { LanesMain } from './lanes.main.runtime';\nimport { throwForStagedComponents } from './create-lane';\n\nexport type SwitchProps = {\n laneName: string;\n ids?: ComponentID[];\n laneBitIds?: ComponentID[]; // only needed for the deprecated onLanesOnly prop. once this prop is removed, this prop can be removed as well.\n pattern?: string;\n head?: boolean;\n existingOnWorkspaceOnly?: boolean;\n remoteLane?: Lane;\n localTrackedLane?: string;\n alias?: string;\n};\n\nexport class LaneSwitcher {\n private consumer: Consumer;\n private laneIdToSwitchTo: LaneId; // populated by `this.populateSwitchProps()`\n private laneToSwitchTo: Lane | undefined; // populated by `this.populateSwitchProps()`, if default-lane, it's undefined\n constructor(\n private workspace: Workspace,\n private logger: Logger,\n private switchProps: SwitchProps,\n private checkoutProps: CheckoutProps,\n private lanes: LanesMain\n ) {\n this.consumer = this.workspace.consumer;\n }\n\n async switch(): Promise<ApplyVersionResults> {\n this.logger.setStatusLine(`switching lanes`);\n if (this.workspace.isOnMain()) {\n await throwForStagedComponents(this.consumer);\n }\n await this.populateSwitchProps();\n const bitMapIds = this.workspace.consumer.bitmapIdsFromCurrentLaneIncludeRemoved;\n const idsToSwitch = this.switchProps.ids || [];\n const ids = idsToSwitch.map((id) => {\n const bitMapId = bitMapIds.searchWithoutVersion(id);\n return bitMapId || id;\n });\n\n const checkoutProps: CheckoutProps = {\n ...this.checkoutProps,\n ids,\n allowAddingComponentsFromScope: true,\n versionPerId: await this.workspace.resolveMultipleComponentIds(idsToSwitch),\n lane: this.laneToSwitchTo,\n };\n\n const results = await this.lanes.checkout.checkout(checkoutProps);\n\n await this.saveLanesData();\n await this.consumer.onDestroy('lane-switch');\n\n return results;\n }\n\n private async populateSwitchProps() {\n const laneId = await this.consumer.scope.lanes.parseLaneIdFromString(this.switchProps.laneName);\n\n const localLane = await this.consumer.scope.loadLane(laneId);\n const getMainIds = async () => {\n const mainIds = await this.consumer.getIdsOfDefaultLane();\n if (this.switchProps.head) {\n await this.workspace.scope.legacyScope.scopeImporter.importWithoutDeps(mainIds, { cache: false });\n return this.consumer.getIdsOfDefaultLane();\n }\n return mainIds;\n };\n const mainIds = await getMainIds();\n if (laneId.isDefault()) {\n await this.populatePropsAccordingToDefaultLane();\n this.switchProps.ids = mainIds;\n } else {\n const laneIds =\n localLane && !this.switchProps.head\n ? this.populatePropsAccordingToLocalLane(localLane)\n : await this.populatePropsAccordingToRemoteLane(laneId);\n const idsOnLaneOnly = laneIds.filter((id) => !mainIds.find((i) => i.isEqualWithoutVersion(id)));\n const idsOnMainOnly = mainIds.filter((id) => !laneIds.find((i) => i.isEqualWithoutVersion(id)));\n this.switchProps.ids = [...idsOnMainOnly, ...laneIds];\n this.switchProps.laneBitIds = idsOnLaneOnly;\n }\n await this.populateIdsAccordingToPattern();\n }\n\n private async populateIdsAccordingToPattern() {\n if (!this.switchProps.pattern) {\n return;\n }\n if (this.consumer.bitMap.getAllBitIdsFromAllLanes().length) {\n // if the workspace is not empty, it's possible that it has components from lane-x, and is now switching\n // partially to lane-y, while lane-y has the same components as lane-x. in which case, the user ends up with\n // an invalid state of components from lane-x and lane-y together.\n throw new BitError('error: use --pattern only when the workspace is empty');\n }\n const allIds = this.switchProps.ids || [];\n const patternIds = await this.workspace.filterIdsFromPoolIdsByPattern(this.switchProps.pattern, allIds);\n this.switchProps.ids = patternIds.map((id) => id);\n }\n\n private async populatePropsAccordingToRemoteLane(remoteLaneId: LaneId): Promise<ComponentID[]> {\n this.laneIdToSwitchTo = remoteLaneId;\n this.logger.debug(`populatePropsAccordingToRemoteLane, remoteLaneId: ${remoteLaneId.toString()}`);\n this.throwForSwitchingToCurrentLane();\n const remoteLane = await this.lanes.fetchLaneWithItsComponents(remoteLaneId);\n this.switchProps.laneName = remoteLaneId.name;\n this.switchProps.localTrackedLane = this.consumer.scope.lanes.getAliasByLaneId(remoteLaneId) || undefined;\n this.switchProps.remoteLane = remoteLane;\n this.laneToSwitchTo = remoteLane;\n this.logger.debug(`populatePropsAccordingToRemoteLane, completed`);\n return remoteLane.components.map((l) => l.id.changeVersion(l.head.toString()));\n }\n\n private async populatePropsAccordingToDefaultLane() {\n this.laneIdToSwitchTo = LaneId.from(DEFAULT_LANE, this.consumer.scope.name);\n this.throwForSwitchingToCurrentLane();\n }\n\n private populatePropsAccordingToLocalLane(localLane: Lane): ComponentID[] {\n this.laneIdToSwitchTo = localLane.toLaneId();\n this.laneToSwitchTo = localLane;\n this.throwForSwitchingToCurrentLane();\n return localLane.components.map((c) => c.id.changeVersion(c.head.toString()));\n }\n\n private throwForSwitchingToCurrentLane() {\n if (this.consumer.getCurrentLaneId().isEqual(this.laneIdToSwitchTo)) {\n const laneIdStr = this.laneIdToSwitchTo.isDefault()\n ? this.laneIdToSwitchTo.name\n : this.laneIdToSwitchTo.toString();\n throw new BitError(`already checked out to \"${laneIdStr}\".\nto be up to date with the remote lane, please run \"bit checkout head\"`);\n }\n }\n\n private async saveLanesData() {\n const localLaneName = this.switchProps.alias || this.laneIdToSwitchTo.name;\n if (this.switchProps.remoteLane) {\n if (!this.switchProps.localTrackedLane) {\n this.consumer.scope.lanes.trackLane({\n localLane: localLaneName,\n remoteLane: this.laneIdToSwitchTo.name,\n remoteScope: this.laneIdToSwitchTo.scope,\n });\n }\n }\n\n this.consumer.setCurrentLane(this.laneIdToSwitchTo, !this.laneToSwitchTo?.isNew);\n this.consumer.bitMap.syncWithIds(\n ComponentIdList.fromArray(this.switchProps.ids || []),\n ComponentIdList.fromArray(this.switchProps.laneBitIds || [])\n );\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
package/dist/switch.cmd.d.ts
CHANGED
@@ -15,7 +15,8 @@ export declare class SwitchCmd implements Command {
|
|
15
15
|
options: CommandOptions;
|
16
16
|
loader: boolean;
|
17
17
|
constructor(lanes: LanesMain);
|
18
|
-
report([lane]: [string], { alias, autoMergeResolve, getAll, workspaceOnly, skipDependencyInstallation, pattern, json, }: {
|
18
|
+
report([lane]: [string], { head, alias, autoMergeResolve, getAll, workspaceOnly, skipDependencyInstallation, pattern, json, }: {
|
19
|
+
head?: boolean;
|
19
20
|
alias?: string;
|
20
21
|
autoMergeResolve?: MergeStrategy;
|
21
22
|
getAll?: boolean;
|
package/dist/switch.cmd.js
CHANGED
@@ -48,11 +48,12 @@ class SwitchCmd {
|
|
48
48
|
name: 'lane',
|
49
49
|
description: 'lane-name or lane-id (if lane is not local) to switch to'
|
50
50
|
}]);
|
51
|
-
_defineProperty(this, "options", [['
|
52
|
-
${_constants().COMPONENT_PATTERN_HELP}`], ['j', 'json', 'return the output as JSON']]);
|
51
|
+
_defineProperty(this, "options", [['h', 'head', 'switch to the head of the lane/main (fetches the latest changes from the remote)'], ['', 'auto-merge-resolve <merge-strategy>', 'merge local changes with the checked out version. strategy should be "theirs", "ours" or "manual"'], ['a', 'get-all', 'DEPRECATED. this is currently the default behavior'], ['', 'workspace-only', 'checkout only the components in the workspace to the selected lane'], ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'], ['p', 'pattern <component-pattern>', `switch only the lane components matching the specified component-pattern. only works when the workspace is empty\n
|
52
|
+
${_constants().COMPONENT_PATTERN_HELP}`], ['n', 'alias <string>', "relevant when the specified lane is a remote lane. create a local alias for the lane (doesnt affect the lane's name on the remote"], ['j', 'json', 'return the output as JSON']]);
|
53
53
|
_defineProperty(this, "loader", true);
|
54
54
|
}
|
55
55
|
async report([lane], {
|
56
|
+
head,
|
56
57
|
alias,
|
57
58
|
autoMergeResolve,
|
58
59
|
getAll = false,
|
@@ -67,6 +68,7 @@ ${_constants().COMPONENT_PATTERN_HELP}`], ['j', 'json', 'return the output as JS
|
|
67
68
|
installationError,
|
68
69
|
compilationError
|
69
70
|
} = await this.lanes.switchLanes(lane, {
|
71
|
+
head,
|
70
72
|
alias,
|
71
73
|
merge: autoMergeResolve,
|
72
74
|
workspaceOnly,
|
package/dist/switch.cmd.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_merging","_constants","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","r","e","Symbol","toPrimitive","call","TypeError","String","Number","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","alias","autoMergeResolve","getAll","workspaceOnly","skipDependencyInstallation","pattern","json","components","failedComponents","installationError","compilationError","switchLanes","merge","logger","warn","JSON","stringify","getFailureOutput","length","title","body","map","failedComponent","color","unchangedLegitimately","chalk","bold","id","toString","unchangedMessage","join","getSuccessfulOutput","laneSwitched","green","applyVersionReport","compact","installationErrorOutput","compilationErrorOutput","exports"],"sources":["switch.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { compact } from 'lodash';\nimport { applyVersionReport, installationErrorOutput, compilationErrorOutput } from '@teambit/merging';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { LanesMain } from './lanes.main.runtime';\n\nexport class SwitchCmd implements Command {\n name = 'switch <lane>';\n description = `switch to the specified lane`;\n extendedDescription = ``;\n private = true;\n alias = '';\n arguments = [\n {\n name: 'lane',\n description: 'lane-name or lane-id (if lane is not local) to switch to',\n },\n ];\n options = [\n [
|
1
|
+
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_merging","_constants","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","r","e","Symbol","toPrimitive","call","TypeError","String","Number","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","head","alias","autoMergeResolve","getAll","workspaceOnly","skipDependencyInstallation","pattern","json","components","failedComponents","installationError","compilationError","switchLanes","merge","logger","warn","JSON","stringify","getFailureOutput","length","title","body","map","failedComponent","color","unchangedLegitimately","chalk","bold","id","toString","unchangedMessage","join","getSuccessfulOutput","laneSwitched","green","applyVersionReport","compact","installationErrorOutput","compilationErrorOutput","exports"],"sources":["switch.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { compact } from 'lodash';\nimport { applyVersionReport, installationErrorOutput, compilationErrorOutput } from '@teambit/merging';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { LanesMain } from './lanes.main.runtime';\n\nexport class SwitchCmd implements Command {\n name = 'switch <lane>';\n description = `switch to the specified lane`;\n extendedDescription = ``;\n private = true;\n alias = '';\n arguments = [\n {\n name: 'lane',\n description: 'lane-name or lane-id (if lane is not local) to switch to',\n },\n ];\n options = [\n ['h', 'head', 'switch to the head of the lane/main (fetches the latest changes from the remote)'],\n [\n '',\n 'auto-merge-resolve <merge-strategy>',\n 'merge local changes with the checked out version. strategy should be \"theirs\", \"ours\" or \"manual\"',\n ],\n ['a', 'get-all', 'DEPRECATED. this is currently the default behavior'],\n ['', 'workspace-only', 'checkout only the components in the workspace to the selected lane'],\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n `switch only the lane components matching the specified component-pattern. only works when the workspace is empty\\n\n${COMPONENT_PATTERN_HELP}`,\n ],\n [\n 'n',\n 'alias <string>',\n \"relevant when the specified lane is a remote lane. create a local alias for the lane (doesnt affect the lane's name on the remote\",\n ],\n ['j', 'json', 'return the output as JSON'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [lane]: [string],\n {\n head,\n alias,\n autoMergeResolve,\n getAll = false,\n workspaceOnly = false,\n skipDependencyInstallation = false,\n pattern,\n json = false,\n }: {\n head?: boolean;\n alias?: string;\n autoMergeResolve?: MergeStrategy;\n getAll?: boolean;\n workspaceOnly?: boolean;\n skipDependencyInstallation?: boolean;\n override?: boolean;\n pattern?: string;\n json?: boolean;\n }\n ) {\n const { components, failedComponents, installationError, compilationError } = await this.lanes.switchLanes(lane, {\n head,\n alias,\n merge: autoMergeResolve,\n workspaceOnly,\n pattern,\n skipDependencyInstallation,\n });\n if (getAll) {\n this.lanes.logger.warn('the --get-all flag is deprecated and currently the default behavior');\n }\n if (json) {\n return JSON.stringify({ components, failedComponents }, null, 4);\n }\n const getFailureOutput = () => {\n if (!failedComponents || !failedComponents.length) return '';\n const title = 'the switch has been canceled for the following component(s)';\n const body = failedComponents\n .map((failedComponent) => {\n const color = failedComponent.unchangedLegitimately ? 'white' : 'red';\n return `${chalk.bold(failedComponent.id.toString())} - ${chalk[color](failedComponent.unchangedMessage)}`;\n })\n .join('\\n');\n return `${title}\\n${body}`;\n };\n const getSuccessfulOutput = () => {\n const laneSwitched = chalk.green(`\\nsuccessfully set \"${chalk.bold(lane)}\" as the active lane`);\n if (!components || !components.length) return `No components have been changed.${laneSwitched}`;\n const title = `successfully switched ${components.length} components to the head of lane ${lane}\\n`;\n return chalk.bold(title) + applyVersionReport(components, true, false) + laneSwitched;\n };\n\n return compact([\n getFailureOutput(),\n getSuccessfulOutput(),\n installationErrorOutput(installationError),\n compilationErrorOutput(compilationError),\n ]).join('\\n\\n');\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,QAAA;EAAA,MAAAH,IAAA,GAAAE,OAAA;EAAAC,OAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,SAAA;EAAA,MAAAJ,IAAA,GAAAE,OAAA;EAAAE,QAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGA,SAAAK,WAAA;EAAA,MAAAL,IAAA,GAAAE,OAAA;EAAAG,UAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAwE,SAAAC,uBAAAK,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,gBAAAH,GAAA,EAAAI,GAAA,EAAAC,KAAA,IAAAD,GAAA,GAAAE,cAAA,CAAAF,GAAA,OAAAA,GAAA,IAAAJ,GAAA,IAAAO,MAAA,CAAAC,cAAA,CAAAR,GAAA,EAAAI,GAAA,IAAAC,KAAA,EAAAA,KAAA,EAAAI,UAAA,QAAAC,YAAA,QAAAC,QAAA,oBAAAX,GAAA,CAAAI,GAAA,IAAAC,KAAA,WAAAL,GAAA;AAAA,SAAAM,eAAAM,CAAA,QAAAC,CAAA,GAAAC,YAAA,CAAAF,CAAA,uCAAAC,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAF,CAAA,EAAAG,CAAA,2BAAAH,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAI,CAAA,GAAAJ,CAAA,CAAAK,MAAA,CAAAC,WAAA,kBAAAF,CAAA,QAAAH,CAAA,GAAAG,CAAA,CAAAG,IAAA,CAAAP,CAAA,EAAAG,CAAA,uCAAAF,CAAA,SAAAA,CAAA,YAAAO,SAAA,yEAAAL,CAAA,GAAAM,MAAA,GAAAC,MAAA,EAAAV,CAAA;AAGjE,MAAMW,SAAS,CAAoB;EAqCxCC,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eApC7B,eAAe;IAAAA,eAAA,sBACP,8BAA6B;IAAAA,eAAA,8BACrB,EAAC;IAAAA,eAAA,kBACd,IAAI;IAAAA,eAAA,gBACN,EAAE;IAAAA,eAAA,oBACE,CACV;MACEuB,IAAI,EAAE,MAAM;MACZC,WAAW,EAAE;IACf,CAAC,CACF;IAAAxB,eAAA,kBACS,CACR,CAAC,GAAG,EAAE,MAAM,EAAE,kFAAkF,CAAC,EACjG,CACE,EAAE,EACF,qCAAqC,EACrC,mGAAmG,CACpG,EACD,CAAC,GAAG,EAAE,SAAS,EAAE,oDAAoD,CAAC,EACtE,CAAC,EAAE,EAAE,gBAAgB,EAAE,oEAAoE,CAAC,EAC5F,CAAC,GAAG,EAAE,8BAA8B,EAAE,wDAAwD,CAAC,EAC/F,CACE,GAAG,EACH,6BAA6B,EAC5B;AACP,EAAEyB,mCAAuB,EAAC,CACrB,EACD,CACE,GAAG,EACH,gBAAgB,EAChB,mIAAmI,CACpI,EACD,CAAC,GAAG,EAAE,MAAM,EAAE,2BAA2B,CAAC,CAC3C;IAAAzB,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAM0B,MAAMA,CACV,CAACC,IAAI,CAAW,EAChB;IACEC,IAAI;IACJC,KAAK;IACLC,gBAAgB;IAChBC,MAAM,GAAG,KAAK;IACdC,aAAa,GAAG,KAAK;IACrBC,0BAA0B,GAAG,KAAK;IAClCC,OAAO;IACPC,IAAI,GAAG;EAWT,CAAC,EACD;IACA,MAAM;MAAEC,UAAU;MAAEC,gBAAgB;MAAEC,iBAAiB;MAAEC;IAAiB,CAAC,GAAG,MAAM,IAAI,CAACjB,KAAK,CAACkB,WAAW,CAACb,IAAI,EAAE;MAC/GC,IAAI;MACJC,KAAK;MACLY,KAAK,EAAEX,gBAAgB;MACvBE,aAAa;MACbE,OAAO;MACPD;IACF,CAAC,CAAC;IACF,IAAIF,MAAM,EAAE;MACV,IAAI,CAACT,KAAK,CAACoB,MAAM,CAACC,IAAI,CAAC,qEAAqE,CAAC;IAC/F;IACA,IAAIR,IAAI,EAAE;MACR,OAAOS,IAAI,CAACC,SAAS,CAAC;QAAET,UAAU;QAAEC;MAAiB,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IAClE;IACA,MAAMS,gBAAgB,GAAGA,CAAA,KAAM;MAC7B,IAAI,CAACT,gBAAgB,IAAI,CAACA,gBAAgB,CAACU,MAAM,EAAE,OAAO,EAAE;MAC5D,MAAMC,KAAK,GAAG,6DAA6D;MAC3E,MAAMC,IAAI,GAAGZ,gBAAgB,CAC1Ba,GAAG,CAAEC,eAAe,IAAK;QACxB,MAAMC,KAAK,GAAGD,eAAe,CAACE,qBAAqB,GAAG,OAAO,GAAG,KAAK;QACrE,OAAQ,GAAEC,gBAAK,CAACC,IAAI,CAACJ,eAAe,CAACK,EAAE,CAACC,QAAQ,CAAC,CAAC,CAAE,MAAKH,gBAAK,CAACF,KAAK,CAAC,CAACD,eAAe,CAACO,gBAAgB,CAAE,EAAC;MAC3G,CAAC,CAAC,CACDC,IAAI,CAAC,IAAI,CAAC;MACb,OAAQ,GAAEX,KAAM,KAAIC,IAAK,EAAC;IAC5B,CAAC;IACD,MAAMW,mBAAmB,GAAGA,CAAA,KAAM;MAChC,MAAMC,YAAY,GAAGP,gBAAK,CAACQ,KAAK,CAAE,uBAAsBR,gBAAK,CAACC,IAAI,CAAC5B,IAAI,CAAE,sBAAqB,CAAC;MAC/F,IAAI,CAACS,UAAU,IAAI,CAACA,UAAU,CAACW,MAAM,EAAE,OAAQ,mCAAkCc,YAAa,EAAC;MAC/F,MAAMb,KAAK,GAAI,yBAAwBZ,UAAU,CAACW,MAAO,mCAAkCpB,IAAK,IAAG;MACnG,OAAO2B,gBAAK,CAACC,IAAI,CAACP,KAAK,CAAC,GAAG,IAAAe,6BAAkB,EAAC3B,UAAU,EAAE,IAAI,EAAE,KAAK,CAAC,GAAGyB,YAAY;IACvF,CAAC;IAED,OAAO,IAAAG,iBAAO,EAAC,CACblB,gBAAgB,CAAC,CAAC,EAClBc,mBAAmB,CAAC,CAAC,EACrB,IAAAK,kCAAuB,EAAC3B,iBAAiB,CAAC,EAC1C,IAAA4B,iCAAsB,EAAC3B,gBAAgB,CAAC,CACzC,CAAC,CAACoB,IAAI,CAAC,MAAM,CAAC;EACjB;AACF;AAACQ,OAAA,CAAA/C,SAAA,GAAAA,SAAA","ignoreList":[]}
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/lanes",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.262",
|
4
4
|
"homepage": "https://bit.cloud/teambit/lanes/lanes",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.lanes",
|
8
8
|
"name": "lanes",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.262"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"lodash": "4.17.21",
|
@@ -29,31 +29,31 @@
|
|
29
29
|
"@teambit/scope.ui.scope-icon": "0.0.91",
|
30
30
|
"@teambit/ui-foundation.ui.menu": "0.0.502",
|
31
31
|
"@teambit/ui-foundation.ui.react-router.use-query": "0.0.501",
|
32
|
-
"@teambit/scope": "1.0.
|
33
|
-
"@teambit/workspace": "1.0.
|
32
|
+
"@teambit/scope": "1.0.262",
|
33
|
+
"@teambit/workspace": "1.0.262",
|
34
34
|
"@teambit/lanes.ui.models.lanes-model": "0.0.216",
|
35
|
-
"@teambit/checkout": "1.0.
|
35
|
+
"@teambit/checkout": "1.0.262",
|
36
36
|
"@teambit/cli": "0.0.863",
|
37
|
-
"@teambit/importer": "1.0.
|
37
|
+
"@teambit/importer": "1.0.262",
|
38
38
|
"@teambit/express": "0.0.962",
|
39
39
|
"@teambit/logger": "0.0.956",
|
40
|
-
"@teambit/graphql": "1.0.
|
41
|
-
"@teambit/component-compare": "1.0.
|
42
|
-
"@teambit/component-writer": "1.0.
|
43
|
-
"@teambit/component": "1.0.
|
44
|
-
"@teambit/export": "1.0.
|
45
|
-
"@teambit/install": "1.0.
|
40
|
+
"@teambit/graphql": "1.0.262",
|
41
|
+
"@teambit/component-compare": "1.0.262",
|
42
|
+
"@teambit/component-writer": "1.0.262",
|
43
|
+
"@teambit/component": "1.0.262",
|
44
|
+
"@teambit/export": "1.0.262",
|
45
|
+
"@teambit/install": "1.0.262",
|
46
46
|
"@teambit/lanes.entities.lane-diff": "0.0.166",
|
47
47
|
"@teambit/lanes.modules.diff": "0.0.443",
|
48
|
-
"@teambit/merging": "1.0.
|
49
|
-
"@teambit/remove": "1.0.
|
48
|
+
"@teambit/merging": "1.0.262",
|
49
|
+
"@teambit/remove": "1.0.262",
|
50
50
|
"@teambit/lanes.hooks.use-lanes": "0.0.264",
|
51
51
|
"@teambit/lanes.hooks.use-viewed-lane-from-url": "0.0.223",
|
52
52
|
"@teambit/lanes.ui.lane-overview": "0.0.227",
|
53
53
|
"@teambit/lanes.ui.menus.use-lanes-menu": "0.0.216",
|
54
54
|
"@teambit/lanes.ui.navigation.lane-switcher": "0.0.225",
|
55
55
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.508",
|
56
|
-
"@teambit/ui": "1.0.
|
56
|
+
"@teambit/ui": "1.0.262"
|
57
57
|
},
|
58
58
|
"devDependencies": {
|
59
59
|
"@types/lodash": "4.14.165",
|
@@ -65,7 +65,7 @@
|
|
65
65
|
"@teambit/harmony.envs.core-aspect-env": "0.0.33",
|
66
66
|
"@teambit/component.testing.mock-components": "0.0.201",
|
67
67
|
"@teambit/harmony.testing.load-aspect": "0.0.196",
|
68
|
-
"@teambit/snapping": "1.0.
|
68
|
+
"@teambit/snapping": "1.0.262",
|
69
69
|
"@teambit/workspace.testing.mock-workspace": "0.0.27"
|
70
70
|
},
|
71
71
|
"peerDependencies": {
|