@teambit/lanes 1.0.248 → 1.0.250

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.
@@ -56,6 +56,13 @@ function _getCloudUser() {
56
56
  };
57
57
  return data;
58
58
  }
59
+ function _legacyBitId() {
60
+ const data = require("@teambit/legacy-bit-id");
61
+ _legacyBitId = function () {
62
+ return data;
63
+ };
64
+ return data;
65
+ }
59
66
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
60
67
  // import { ComponentIdList } from '@teambit/component-id';
61
68
 
@@ -68,6 +75,9 @@ async function createLane(workspace, laneName, scopeName, remoteLane) {
68
75
  }
69
76
  const bitCloudUser = await (0, _getCloudUser().getBitCloudUser)();
70
77
  throwForInvalidLaneName(laneName);
78
+ if (!(0, _legacyBitId().isValidScopeName)(scopeName)) {
79
+ throw new (_legacyBitId().InvalidScopeName)(scopeName);
80
+ }
71
81
  await throwForStagedComponents(consumer);
72
82
  const getDataToPopulateLaneObjectIfNeeded = async () => {
73
83
  if (remoteLane) return remoteLane.components;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","_lane","_interopRequireDefault","_componentVersion","_componentsList","_objects","_lodash","_getCloudUser","obj","__esModule","default","MAX_LANE_NAME_LENGTH","createLane","workspace","laneName","scopeName","remoteLane","consumer","lanes","scope","listLanes","find","lane","name","BitError","bitCloudUser","getBitCloudUser","throwForInvalidLaneName","throwForStagedComponents","getDataToPopulateLaneObjectIfNeeded","components","currentLaneObject","getCurrentLaneObject","laneComponents","workspaceIds","bitMap","getAllBitIds","laneComponentWithBitmapHead","Promise","all","map","id","head","compId","changeVersion","toString","isRemoved","isComponentRemoved","bitmapHead","searchWithoutVersion","isSnap","version","Ref","from","compact","forkedFrom","getLaneOrigin","newLane","Lane","hash","log","create","dataToPopulate","setLaneComponents","laneHistoryMsg","saveLane","createLaneInScope","legacyScope","currentLaneId","laneId","undefined","isLaneExported","currentLane","isValidLaneName","componentList","ComponentsList","stagedComponents","listExportPendingComponentsIds","length","join","val","test"],"sources":["create-lane.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport { ScopeMain } from '@teambit/scope';\n// import { ComponentIdList } from '@teambit/component-id';\nimport Lane, { LaneComponent } from '@teambit/legacy/dist/scope/models/lane';\nimport { isSnap } from '@teambit/component-version';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport { Ref } from '@teambit/legacy/dist/scope/objects';\nimport { Workspace } from '@teambit/workspace';\nimport { compact } from 'lodash';\nimport { getBitCloudUser } from '@teambit/legacy/dist/utils/bit/get-cloud-user';\n\nconst MAX_LANE_NAME_LENGTH = 800;\n\nexport async function createLane(\n workspace: Workspace,\n laneName: string,\n scopeName: string,\n remoteLane?: Lane\n): Promise<Lane> {\n const consumer = workspace.consumer;\n const lanes = await consumer.scope.listLanes();\n if (lanes.find((lane) => lane.name === laneName && lane.scope === scopeName)) {\n throw new BitError(\n `lane \"${scopeName}/${laneName}\" already exists, to switch to this lane, please use \"bit switch\" command`\n );\n }\n const bitCloudUser = await getBitCloudUser();\n throwForInvalidLaneName(laneName);\n await throwForStagedComponents(consumer);\n const getDataToPopulateLaneObjectIfNeeded = async (): Promise<LaneComponent[]> => {\n if (remoteLane) return remoteLane.components;\n // when branching from one lane to another, copy components from the origin lane\n // when branching from main, no need to copy anything\n const currentLaneObject = await consumer.getCurrentLaneObject();\n if (!currentLaneObject) return [];\n const laneComponents = currentLaneObject.components;\n const workspaceIds = consumer.bitMap.getAllBitIds();\n const laneComponentWithBitmapHead = await Promise.all(\n laneComponents.map(async ({ id, head }) => {\n const compId = id.changeVersion(head.toString());\n const isRemoved = await workspace.scope.isComponentRemoved(compId);\n if (isRemoved) return null;\n const bitmapHead = workspaceIds.searchWithoutVersion(id);\n if (bitmapHead && isSnap(bitmapHead.version)) {\n return { id, head: Ref.from(bitmapHead.version as string) };\n }\n return { id, head };\n })\n );\n return compact(laneComponentWithBitmapHead);\n };\n\n const forkedFrom = await getLaneOrigin(consumer);\n const newLane = remoteLane\n ? Lane.from({\n name: laneName,\n hash: remoteLane.hash().toString(),\n log: remoteLane.log,\n scope: remoteLane.scope,\n forkedFrom,\n })\n : Lane.create(laneName, scopeName, forkedFrom, bitCloudUser);\n const dataToPopulate = await getDataToPopulateLaneObjectIfNeeded();\n newLane.setLaneComponents(dataToPopulate);\n\n const laneHistoryMsg = remoteLane ? `fork lane \"${remoteLane.name}\"` : 'new lane';\n await consumer.scope.lanes.saveLane(newLane, { laneHistoryMsg });\n\n return newLane;\n}\n\nexport async function createLaneInScope(laneName: string, scope: ScopeMain): Promise<Lane> {\n const lanes = await scope.legacyScope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists`);\n }\n throwForInvalidLaneName(laneName);\n const newLane = Lane.create(laneName, scope.name);\n await scope.legacyScope.lanes.saveLane(newLane, { laneHistoryMsg: 'new lane (created from scope)' });\n return newLane;\n}\n\nasync function getLaneOrigin(consumer: Consumer): Promise<LaneId | undefined> {\n const currentLaneId = consumer.bitMap.laneId;\n if (!currentLaneId) return undefined;\n if (consumer.bitMap.isLaneExported) {\n return currentLaneId;\n }\n // current lane is new.\n const currentLane = await consumer.getCurrentLaneObject();\n return currentLane?.forkedFrom;\n}\n\nexport function throwForInvalidLaneName(laneName: string) {\n if (!isValidLaneName(laneName)) {\n throw new BitError(\n `lane \"${laneName}\" has invalid characters. lane name can only contain alphanumeric, lowercase characters, and the following [\"-\", \"_\", \"$\", \"!\"]`\n );\n }\n}\n\nexport async function throwForStagedComponents(consumer: Consumer) {\n const componentList = new ComponentsList(consumer);\n const stagedComponents = await componentList.listExportPendingComponentsIds();\n if (stagedComponents.length) {\n throw new BitError(\n `unable to switch/create a new lane, please export or reset the following components first: ${stagedComponents.join(\n ', '\n )}`\n );\n }\n}\n\nfunction isValidLaneName(val: unknown): boolean {\n if (typeof val !== 'string') return false;\n if (val.length > MAX_LANE_NAME_LENGTH) return false;\n // @todo: should we allow slash? if so, we should probably replace the lane-delimiter with something else. (maybe \":\")\n return /^[$\\-_!a-z0-9]+$/.test(val);\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_bitError","data","require","_lane","_interopRequireDefault","_componentVersion","_componentsList","_objects","_lodash","_getCloudUser","_legacyBitId","obj","__esModule","default","MAX_LANE_NAME_LENGTH","createLane","workspace","laneName","scopeName","remoteLane","consumer","lanes","scope","listLanes","find","lane","name","BitError","bitCloudUser","getBitCloudUser","throwForInvalidLaneName","isValidScopeName","InvalidScopeName","throwForStagedComponents","getDataToPopulateLaneObjectIfNeeded","components","currentLaneObject","getCurrentLaneObject","laneComponents","workspaceIds","bitMap","getAllBitIds","laneComponentWithBitmapHead","Promise","all","map","id","head","compId","changeVersion","toString","isRemoved","isComponentRemoved","bitmapHead","searchWithoutVersion","isSnap","version","Ref","from","compact","forkedFrom","getLaneOrigin","newLane","Lane","hash","log","create","dataToPopulate","setLaneComponents","laneHistoryMsg","saveLane","createLaneInScope","legacyScope","currentLaneId","laneId","undefined","isLaneExported","currentLane","isValidLaneName","componentList","ComponentsList","stagedComponents","listExportPendingComponentsIds","length","join","val","test"],"sources":["create-lane.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport { ScopeMain } from '@teambit/scope';\n// import { ComponentIdList } from '@teambit/component-id';\nimport Lane, { LaneComponent } from '@teambit/legacy/dist/scope/models/lane';\nimport { isSnap } from '@teambit/component-version';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport { Ref } from '@teambit/legacy/dist/scope/objects';\nimport { Workspace } from '@teambit/workspace';\nimport { compact } from 'lodash';\nimport { getBitCloudUser } from '@teambit/legacy/dist/utils/bit/get-cloud-user';\nimport { InvalidScopeName, isValidScopeName } from '@teambit/legacy-bit-id';\n\nconst MAX_LANE_NAME_LENGTH = 800;\n\nexport async function createLane(\n workspace: Workspace,\n laneName: string,\n scopeName: string,\n remoteLane?: Lane\n): Promise<Lane> {\n const consumer = workspace.consumer;\n const lanes = await consumer.scope.listLanes();\n if (lanes.find((lane) => lane.name === laneName && lane.scope === scopeName)) {\n throw new BitError(\n `lane \"${scopeName}/${laneName}\" already exists, to switch to this lane, please use \"bit switch\" command`\n );\n }\n const bitCloudUser = await getBitCloudUser();\n throwForInvalidLaneName(laneName);\n if (!isValidScopeName(scopeName)) {\n throw new InvalidScopeName(scopeName);\n }\n await throwForStagedComponents(consumer);\n const getDataToPopulateLaneObjectIfNeeded = async (): Promise<LaneComponent[]> => {\n if (remoteLane) return remoteLane.components;\n // when branching from one lane to another, copy components from the origin lane\n // when branching from main, no need to copy anything\n const currentLaneObject = await consumer.getCurrentLaneObject();\n if (!currentLaneObject) return [];\n const laneComponents = currentLaneObject.components;\n const workspaceIds = consumer.bitMap.getAllBitIds();\n const laneComponentWithBitmapHead = await Promise.all(\n laneComponents.map(async ({ id, head }) => {\n const compId = id.changeVersion(head.toString());\n const isRemoved = await workspace.scope.isComponentRemoved(compId);\n if (isRemoved) return null;\n const bitmapHead = workspaceIds.searchWithoutVersion(id);\n if (bitmapHead && isSnap(bitmapHead.version)) {\n return { id, head: Ref.from(bitmapHead.version as string) };\n }\n return { id, head };\n })\n );\n return compact(laneComponentWithBitmapHead);\n };\n\n const forkedFrom = await getLaneOrigin(consumer);\n const newLane = remoteLane\n ? Lane.from({\n name: laneName,\n hash: remoteLane.hash().toString(),\n log: remoteLane.log,\n scope: remoteLane.scope,\n forkedFrom,\n })\n : Lane.create(laneName, scopeName, forkedFrom, bitCloudUser);\n const dataToPopulate = await getDataToPopulateLaneObjectIfNeeded();\n newLane.setLaneComponents(dataToPopulate);\n\n const laneHistoryMsg = remoteLane ? `fork lane \"${remoteLane.name}\"` : 'new lane';\n await consumer.scope.lanes.saveLane(newLane, { laneHistoryMsg });\n\n return newLane;\n}\n\nexport async function createLaneInScope(laneName: string, scope: ScopeMain): Promise<Lane> {\n const lanes = await scope.legacyScope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists`);\n }\n throwForInvalidLaneName(laneName);\n const newLane = Lane.create(laneName, scope.name);\n await scope.legacyScope.lanes.saveLane(newLane, { laneHistoryMsg: 'new lane (created from scope)' });\n return newLane;\n}\n\nasync function getLaneOrigin(consumer: Consumer): Promise<LaneId | undefined> {\n const currentLaneId = consumer.bitMap.laneId;\n if (!currentLaneId) return undefined;\n if (consumer.bitMap.isLaneExported) {\n return currentLaneId;\n }\n // current lane is new.\n const currentLane = await consumer.getCurrentLaneObject();\n return currentLane?.forkedFrom;\n}\n\nexport function throwForInvalidLaneName(laneName: string) {\n if (!isValidLaneName(laneName)) {\n throw new BitError(\n `lane \"${laneName}\" has invalid characters. lane name can only contain alphanumeric, lowercase characters, and the following [\"-\", \"_\", \"$\", \"!\"]`\n );\n }\n}\n\nexport async function throwForStagedComponents(consumer: Consumer) {\n const componentList = new ComponentsList(consumer);\n const stagedComponents = await componentList.listExportPendingComponentsIds();\n if (stagedComponents.length) {\n throw new BitError(\n `unable to switch/create a new lane, please export or reset the following components first: ${stagedComponents.join(\n ', '\n )}`\n );\n }\n}\n\nfunction isValidLaneName(val: unknown): boolean {\n if (typeof val !== 'string') return false;\n if (val.length > MAX_LANE_NAME_LENGTH) return false;\n // @todo: should we allow slash? if so, we should probably replace the lane-delimiter with something else. (maybe \":\")\n return /^[$\\-_!a-z0-9]+$/.test(val);\n}\n"],"mappings":"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","ignoreList":[]}
@@ -160,6 +160,21 @@ export declare class LaneHistoryCmd implements Command {
160
160
  id?: string;
161
161
  }): Promise<string>;
162
162
  }
163
+ export declare class LaneEjectCmd implements Command {
164
+ private lanes;
165
+ name: string;
166
+ description: string;
167
+ extendedDescription: string;
168
+ alias: string;
169
+ arguments: {
170
+ name: string;
171
+ description: string;
172
+ }[];
173
+ options: CommandOptions;
174
+ loader: boolean;
175
+ constructor(lanes: LanesMain);
176
+ report([pattern]: [string]): Promise<string>;
177
+ }
163
178
  export declare class LaneChangeScopeCmd implements Command {
164
179
  private lanes;
165
180
  name: string;
package/dist/lane.cmd.js CHANGED
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.LaneShowCmd = exports.LaneRevertCmd = exports.LaneRenameCmd = exports.LaneRemoveReadmeCmd = exports.LaneRemoveCompCmd = exports.LaneRemoveCmd = exports.LaneListCmd = exports.LaneImportCmd = exports.LaneHistoryCmd = exports.LaneFetchCmd = exports.LaneCreateCmd = exports.LaneCmd = exports.LaneCheckoutCmd = exports.LaneChangeScopeCmd = exports.LaneAliasCmd = exports.LaneAddReadmeCmd = exports.CatLaneHistoryCmd = void 0;
6
+ exports.LaneShowCmd = exports.LaneRevertCmd = exports.LaneRenameCmd = exports.LaneRemoveReadmeCmd = exports.LaneRemoveCompCmd = exports.LaneRemoveCmd = exports.LaneListCmd = exports.LaneImportCmd = exports.LaneHistoryCmd = exports.LaneFetchCmd = exports.LaneEjectCmd = exports.LaneCreateCmd = exports.LaneCmd = exports.LaneCheckoutCmd = exports.LaneChangeScopeCmd = exports.LaneAliasCmd = exports.LaneAddReadmeCmd = exports.CatLaneHistoryCmd = void 0;
7
7
  function _chalk() {
8
8
  const data = _interopRequireDefault(require("chalk"));
9
9
  _chalk = function () {
@@ -360,6 +360,29 @@ class LaneHistoryCmd {
360
360
  }
361
361
  }
362
362
  exports.LaneHistoryCmd = LaneHistoryCmd;
363
+ class LaneEjectCmd {
364
+ constructor(lanes) {
365
+ this.lanes = lanes;
366
+ _defineProperty(this, "name", 'eject <component-pattern>');
367
+ _defineProperty(this, "description", `delete a component from the lane and install it as a package from main`);
368
+ _defineProperty(this, "extendedDescription", `NOTE: unlike "bit eject" on main, this command doesn't only remove the component from the
369
+ workspace, but also mark it as deleted from the lane, so it won't be merged later on.`);
370
+ _defineProperty(this, "alias", '');
371
+ _defineProperty(this, "arguments", [{
372
+ name: 'component-pattern',
373
+ description: _constants().COMPONENT_PATTERN_HELP
374
+ }]);
375
+ _defineProperty(this, "options", []);
376
+ _defineProperty(this, "loader", true);
377
+ }
378
+ async report([pattern]) {
379
+ const results = await this.lanes.eject(pattern);
380
+ const title = _chalk().default.green('successfully ejected the following components');
381
+ const body = results.map(r => r.toString()).join('\n');
382
+ return `${title}\n${body}`;
383
+ }
384
+ }
385
+ exports.LaneEjectCmd = LaneEjectCmd;
363
386
  class LaneChangeScopeCmd {
364
387
  constructor(lanes) {
365
388
  this.lanes = lanes;
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yn","_laneId","_checkout","_workspace","_lanes","_bitError","_prompts","_constants","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","r","e","Symbol","toPrimitive","call","TypeError","String","Number","LaneListCmd","constructor","lanes","workspace","scope","report","args","laneOptions","details","remote","merged","notMerged","laneIdStr","laneId","alias","isDefault","name","toString","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","join","unmergedLanes","currentLane","getCurrentLaneId","getDefaultLaneId","laneDataOfCurrentLane","find","isEqual","id","undefined","currentAlias","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","currentLaneComponents","outputComponents","components","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","lanesData","serializeLaneData","getCurrentLaneNameOrAlias","exports","LaneShowCmd","Error","getCurrentLaneName","DEFAULT_LANE","parseLaneId","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","link","DEFAULT_CLOUD_DOMAIN","replace","LaneCreateCmd","description","createLaneOptions","OutsideWorkspaceError","getCurrentLane","remoteScope","result","createLane","remoteScopeOrDefaultScope","yellow","remoteScopeOutput","LaneAliasCmd","laneName","aliasLane","CatLaneHistoryCmd","laneHistory","getLaneHistory","JSON","stringify","toObject","LaneCheckoutCmd","historyId","opts","checkoutHistory","checkoutOutput","LaneRevertCmd","revertHistory","LaneHistoryCmd","BitError","importLaneHistory","history","getHistory","historyItem","message","items","keys","uuid","LaneChangeScopeCmd","remoteScopeBefore","localName","changeScope","LaneRenameCmd","newName","currentName","rename","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","laneResults","removeLanes","LaneRemoveCompCmd","COMPONENT_PATTERN_HELP","LaneImportCmd","switchCmd","lane","skipDependencyInstallation","pattern","LaneFetchCmd","fetchCmd","all","getLaneIdStr","LaneCmd","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","head","component","fullName"],"sources":["lane.cmd.ts"],"sourcesContent":["// eslint-disable-next-line max-classes-per-file\nimport chalk from 'chalk';\nimport yn from 'yn';\nimport { ScopeMain } from '@teambit/scope';\nimport { DEFAULT_LANE, LaneId } from '@teambit/lane-id';\nimport { checkoutOutput } from '@teambit/checkout';\nimport { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData, serializeLaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport { COMPONENT_PATTERN_HELP, DEFAULT_CLOUD_DOMAIN } from '@teambit/legacy/dist/constants';\nimport { CreateLaneOptions, LanesMain } from './lanes.main.runtime';\nimport { SwitchCmd } from './switch.cmd';\nimport { FetchCmd } from '@teambit/importer';\n\ntype LaneOptions = {\n details?: boolean;\n remote?: string;\n merged?: boolean;\n notMerged?: boolean;\n json?: boolean;\n};\n\nexport class LaneListCmd implements Command {\n name = 'list';\n description = `list local or remote lanes`;\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', \"show lanes' details in a json format\"],\n ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report(args, laneOptions: LaneOptions): Promise<string> {\n const { details, remote, merged, notMerged } = laneOptions;\n const laneIdStr = (laneId: LaneId, alias?: string | null) => {\n if (laneId.isDefault()) return laneId.name;\n if (alias) return `${laneId.toString()} (${alias})`;\n return laneId.toString();\n };\n const lanes = await this.lanes.getLanes({\n remote,\n merged,\n notMerged,\n showDefaultLane: true,\n });\n if (merged) {\n const mergedLanes = lanes.filter((l) => l.isMerged);\n if (!mergedLanes.length) return chalk.green('None of the lanes is merged');\n return chalk.green(mergedLanes.map((m) => m.name).join('\\n'));\n }\n if (notMerged) {\n const unmergedLanes = lanes.filter((l) => !l.isMerged);\n if (!unmergedLanes.length) return chalk.green('All lanes are merged');\n return chalk.green(unmergedLanes.map((m) => m.name).join('\\n'));\n }\n const currentLane = this.lanes.getCurrentLaneId() || this.lanes.getDefaultLaneId();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => currentLane.isEqual(l.id)) : undefined;\n const currentAlias = laneDataOfCurrentLane ? laneDataOfCurrentLane.alias : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = remote\n ? ''\n : `current lane - ${chalk.green.green(laneIdStr(currentLane, currentAlias))}${currentLaneReadmeComponentStr}`;\n\n if (details) {\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => !currentLane.isEqual(l.id))\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneIdStr(laneData.id, laneData.alias))}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneIdStr(laneData.id, laneData.alias))} (${\n laneData.components.length\n } components)${readmeComponentStr}`;\n })\n .join('\\n');\n\n const outputFooter = () => {\n let footer = '\\n';\n if (details) {\n footer += 'You can use --merged and --not-merged to see which of the lanes is fully merged.';\n } else {\n footer +=\n \"to get more info on all lanes in local scope use 'bit lane list --details', or 'bit lane show <lane-name>' for a specific lane.\";\n }\n if (!remote && this.workspace)\n footer += `\\nswitch lanes using 'bit switch <name>'. create lanes using 'bit lane create <name>'.`;\n\n return footer;\n };\n\n return outputCurrentLane() + outputAvailableLanes() + outputFooter();\n\n function outputCurrentLane() {\n return currentLaneStr ? `${currentLaneStr}\\n` : '';\n }\n\n function outputAvailableLanes() {\n if (!availableLanes) return '';\n return remote ? `${availableLanes}\\n` : `\\nAvailable lanes:\\n${availableLanes}\\n`;\n }\n }\n async json(args, laneOptions: LaneOptions) {\n const { remote, merged = false, notMerged = false } = laneOptions;\n\n const lanesData = await this.lanes.getLanes({\n remote,\n showDefaultLane: true,\n merged,\n notMerged,\n });\n const lanes = lanesData.map(serializeLaneData);\n const currentLane = this.lanes.getCurrentLaneNameOrAlias();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show [lane-name]';\n description = `show lane details. if no lane specified, show the current lane`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote', 'show details of the remote head of the provided lane'],\n ] as CommandOptions;\n loader = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n const { remote } = laneOptions;\n\n if (!name && remote) {\n throw new Error('remote flag is not supported without lane name');\n }\n if (!name) {\n name = this.lanes.getCurrentLaneName() || DEFAULT_LANE;\n }\n\n const laneId = await this.lanes.parseLaneId(name);\n\n const lanes = await this.lanes.getLanes({\n name: laneId.name,\n remote: remote ? laneId.scope : undefined,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(onlyLane.id.toString())}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date\n ? `created: ${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n`\n : undefined;\n const link = `link: https://${DEFAULT_CLOUD_DOMAIN}/${laneId.scope.replace('.', '/')}/~lane/${laneId.name}\\n`;\n return title + author + date + link + outputComponents(onlyLane.components);\n }\n\n async json([name]: [string], laneOptions: LaneOptions) {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n\n return serializeLaneData(lanes[0]);\n }\n}\n\nexport class LaneCreateCmd implements Command {\n name = 'create <lane-name>';\n arguments = [\n {\n name: 'lane-name',\n description: 'the name for the new lane',\n },\n ];\n description = `creates a new lane and switches to it`;\n extendedDescription = `a lane created from main (default-lane) is empty until components are snapped.\na lane created from another lane contains all the components of the original lane.`;\n alias = '';\n options = [\n [\n 's',\n 'scope <scope-name>',\n 'remote scope to which this lane will be exported, default to the workspace.json\\'s defaultScope (can be changed up to first export of the lane with \"bit lane change-scope\")',\n ],\n ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'],\n [\n '',\n 'alias <name>',\n 'a local alias to refer to this lane, defaults to the `<lane-name>` (can be added later with \"bit lane alias\")',\n ],\n [\n '',\n 'fork-lane-new-scope',\n 'create the new lane in a different scope than its parent lane (if created from another lane)',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions & { remoteScope?: string }): Promise<string> {\n if (!this.lanes.workspace) throw new OutsideWorkspaceError();\n const currentLane = await this.lanes.getCurrentLane();\n if (createLaneOptions.remoteScope) createLaneOptions.scope = createLaneOptions.remoteScope;\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.scope\n ? `the remote scope ${chalk.bold(createLaneOptions.scope)}`\n : `the default-scope ${chalk.bold(\n result.laneId.scope\n )}. you can change the lane's scope, before it is exported, with the \"bit lane change-scope\" command`;\n const title = chalk.green(\n `successfully added and checked out to the new lane ${chalk.bold(result.alias || result.laneId.name)}\n ${currentLane ? chalk.yellow(`\\nnote - your new lane will be based on lane ${currentLane.name}`) : ''}\n `\n );\n const remoteScopeOutput = `this lane will be exported to ${remoteScopeOrDefaultScope}`;\n return `${title}\\n${remoteScopeOutput}`;\n }\n}\n\nexport class LaneAliasCmd implements Command {\n name = 'alias <lane-name> <alias>';\n description = 'adds an alias to a lane';\n extendedDescription = `an alias is a name that can be used locally to refer to a lane. it is saved locally and never reaches the remote.\nit is useful e.g. when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName, alias]: [string, string, string]): Promise<string> {\n const { laneId } = await this.lanes.aliasLane(laneName, alias);\n return `successfully added the alias ${chalk.bold(alias)} for lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class CatLaneHistoryCmd implements Command {\n name = 'cat-lane-history <lane-name>';\n description = 'cat lane-history object by lane-name';\n private = true;\n alias = 'clh';\n options = [] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const laneId = await this.lanes.parseLaneId(laneName);\n const laneHistory = await this.lanes.getLaneHistory(laneId);\n return JSON.stringify(laneHistory.toObject(), null, 2);\n }\n}\n\nexport type LaneCheckoutOpts = { skipDependencyInstallation?: boolean };\n\nexport class LaneCheckoutCmd implements Command {\n name = 'checkout <history-id>';\n description = 'EXPERIMENTAL. checkout to a previous history of the current lane. see also \"bit lane revert\"';\n arguments = [\n { name: 'history-id', description: 'the history-id to checkout to. run \"bit lane history\" to list the ids' },\n ];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the checked out components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([historyId]: [string], opts: LaneCheckoutOpts): Promise<string> {\n const result = await this.lanes.checkoutHistory(historyId, opts);\n return checkoutOutput(result, {}, `successfully checked out according to history-id: ${historyId}`);\n }\n}\n\nexport class LaneRevertCmd implements Command {\n name = 'revert <history-id>';\n description = 'EXPERIMENTAL. revert to a previous history of the current lane. see also \"bit lane checkout\"';\n extendedDescription = `revert is similar to \"lane checkout\", but it keeps the versions and only change the files.\nchoose one or the other based on your needs.\nif you want to continue working on this lane and needs the changes from the history to be the head, then use \"lane revert\".\nif you want to fork the lane from a certain point in history, use \"lane checkout\" and create a new lane from it.`;\n arguments = [\n { name: 'history-id', description: 'the history-id to checkout to. run \"bit lane history\" to list the ids' },\n ];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the checked out components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([historyId]: [string], opts: LaneCheckoutOpts): Promise<string> {\n const result = await this.lanes.revertHistory(historyId, opts);\n return checkoutOutput(result, {}, `successfully reverted according to history-id: ${historyId}`);\n }\n}\n\nexport class LaneHistoryCmd implements Command {\n name = 'history [lane-name]';\n description = 'EXPERIMENTAL. show lane history, default to the current lane';\n alias = '';\n options = [['', 'id <string>', 'show a specific history item']] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string], { id }: { id?: string }): Promise<string> {\n const laneId = laneName ? await this.lanes.parseLaneId(laneName) : this.lanes.getCurrentLaneId();\n if (!laneId || laneId.isDefault()) throw new BitError(`unable to show history of the default lane (main)`);\n await this.lanes.importLaneHistory(laneId);\n const laneHistory = await this.lanes.getLaneHistory(laneId);\n const history = laneHistory.getHistory();\n if (id) {\n const historyItem = history[id];\n if (!historyItem) throw new Error(`history id ${id} was not found`);\n const date = new Date(parseInt(historyItem.log.date)).toLocaleString();\n const message = historyItem.log.message;\n return `${id} ${date} ${historyItem.log.username} ${message}\\n\\n${historyItem.components.join('\\n')}`;\n }\n const items = Object.keys(history).map((uuid) => {\n const historyItem = history[uuid];\n const date = new Date(parseInt(historyItem.log.date)).toLocaleString();\n const message = historyItem.log.message;\n return `${uuid} ${date} ${historyItem.log.username} ${message}`;\n });\n return items.join('\\n');\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n extendedDescription = 'NOTE: available only before the lane is exported to the remote';\n alias = '';\n options = [\n [\n 'l',\n 'lane-name <lane-name>',\n 'the name of the lane to change its remote scope. if not specified, the current lane is used',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([remoteScope]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { remoteScopeBefore, localName } = await this.lanes.changeScope(remoteScope, laneName);\n return `the remote-scope of ${chalk.bold(localName)} has been changed from ${chalk.bold(\n remoteScopeBefore\n )} to ${chalk.bold(remoteScope)}`;\n }\n}\n\nexport class LaneRenameCmd implements Command {\n name = 'rename <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally`;\n extendedDescription = 'the remote will be updated after the next \"bit export\" command';\n alias = '';\n options = [\n ['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used'],\n ] as CommandOptions;\n loader = true;\n constructor(private lanes: LanesMain) {}\n\n async report([newName]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { currentName } = await this.lanes.rename(newName, laneName);\n return `the lane ${chalk.bold(currentName)}'s name has been changed to ${chalk.bold(newName)}.`;\n }\n}\n\nexport class LaneRemoveCmd implements Command {\n name = 'remove <lanes...>';\n arguments = [{ name: 'lanes...', description: 'A list of lane names, separated by spaces' }];\n description = `remove or delete lanes`;\n group = 'collaborate';\n alias = '';\n options = [\n [\n 'r',\n 'remote',\n 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required',\n ],\n ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'],\n ['s', 'silent', 'skip confirmation'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [names]: [string[]],\n {\n remote = false,\n force = false,\n silent = false,\n }: {\n remote: boolean;\n force: boolean;\n silent: boolean;\n }\n ): Promise<string> {\n if (!silent) {\n const removePromptResult = await approveOperation();\n // @ts-ignore\n if (!yn(removePromptResult.shouldProceed)) {\n throw new BitError('the operation has been cancelled');\n }\n }\n const laneResults = await this.lanes.removeLanes(names, { remote, force });\n return chalk.green(`successfully removed the following lane(s): ${chalk.bold(laneResults.join(', '))}`);\n }\n}\n\nexport type RemoveCompsOpts = { workspaceOnly?: boolean; updateMain?: boolean };\n\nexport class LaneRemoveCompCmd implements Command {\n name = 'remove-comp <component-pattern>';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = `DEPRECATED. remove components when on a lane`;\n group = 'collaborate';\n alias = 'rc';\n options = [\n [\n '',\n 'workspace-only',\n 'do not mark the components as removed from the lane. instead, remove them from the workspace only',\n ],\n [\n '',\n 'update-main',\n 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private workspace: Workspace, private lanes: LanesMain) {}\n\n async report(): Promise<string> {\n throw new BitError(`bit lane remove-comp has been removed. please use \"bit remove\" or \"bit delete\" instead`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace and switch to that lane`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false, pattern }: { skipDependencyInstallation: boolean; pattern?: string }\n ): Promise<string> {\n return this.switchCmd.report([lane], { skipDependencyInstallation, pattern });\n }\n}\n\nexport class LaneFetchCmd implements Command {\n name = 'fetch [lane-id]';\n description = `fetch component objects from lanes. if no lane-id is provided, it fetches from the current lane`;\n extendedDescription = `note, it does not save the remote lanes objects locally, only the refs`;\n alias = '';\n options = [['a', 'all', 'fetch all remote lanes']] as CommandOptions;\n loader = true;\n\n constructor(private fetchCmd: FetchCmd, private lanes: LanesMain) {}\n\n async report([laneId]: [string], { all }: { all?: boolean }): Promise<string> {\n if (all) return this.fetchCmd.report([[]], { lanes: true });\n const getLaneIdStr = () => {\n if (laneId) return laneId;\n const currentLane = this.lanes.getCurrentLaneId();\n if (!currentLane || currentLane.isDefault())\n throw new BitError('you are not checked out to any lane. please specify a lane-id to fetch or use --all flag');\n return currentLane.toString();\n };\n const lane = getLaneIdStr();\n return this.fetchCmd.report([[lane]], { lanes: true });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [sub-command]';\n description = 'manage lanes - if no sub-command is used, runs \"bit lane list\"';\n alias = 'l';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in json format'],\n ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n group = 'collaborate';\n remoteOp = true;\n skipWorkspace = true;\n helpUrl = 'reference/components/lanes';\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n return new LaneListCmd(this.lanes, this.workspace, this.scope).report([name], laneOptions);\n }\n}\n\nexport class LaneRemoveReadmeCmd implements Command {\n name = 'remove-readme [laneName]';\n description = 'EXPERIMENTAL. remove lane readme component';\n options = [] as CommandOptions;\n loader = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const { result, message } = await this.lanes.removeLaneReadme(laneName);\n\n if (result) {\n return chalk.green(\n `the readme component has been successfully removed from the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n }\n\n return chalk.red(`${message}\\n`);\n }\n}\n\nexport class LaneAddReadmeCmd implements Command {\n name = 'add-readme <component-name> [lane-name]';\n description = 'EXPERIMENTAL. sets an existing component as the readme of a lane';\n arguments = [\n { name: 'component-id', description: \"the component name or id of the component to use as the lane's readme\" },\n { name: 'lane-name', description: 'the lane to attach the readme to (defaults to the current lane)' },\n ];\n options = [] as CommandOptions;\n loader = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([componentId, laneName]: [string, string]): Promise<string> {\n const { result, message } = await this.lanes.addLaneReadme(componentId, laneName);\n\n if (result)\n return chalk.green(\n `the component ${componentId} has been successfully added as the readme component for the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n\n return chalk.red(\n `${message || ''}\\nthe component ${componentId} could not be added as a readme component for the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n }\n}\n\nfunction outputComponents(components: LaneData['components']): string {\n const componentsTitle = `\\t${chalk.bold(`components (${components.length})`)}\\n`;\n const componentsStr = components.map((c) => `\\t ${c.id.toString()} - ${c.head}`).join('\\n');\n return componentsTitle + componentsStr;\n}\n\nfunction outputReadmeComponent(component: LaneData['readmeComponent']): string {\n if (!component) return '';\n return `\\n\\t${`${chalk.yellow('readme component')}\\n\\t ${component.id} - ${\n component.head ||\n `(unsnapped)\\n\\t(\"use bit snap ${component.id.fullName}\" to snap the readme component on the lane before exporting)`\n }`}\\n`;\n}\n"],"mappings":";;;;;;AACA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,IAAA;EAAA,MAAAH,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAC,GAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAI,QAAA;EAAA,MAAAJ,IAAA,GAAAE,OAAA;EAAAE,OAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAK,UAAA;EAAA,MAAAL,IAAA,GAAAE,OAAA;EAAAG,SAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAM,WAAA;EAAA,MAAAN,IAAA,GAAAE,OAAA;EAAAI,UAAA,YAAAA,CAAA;IAAA,OAAAN,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAO,OAAA;EAAA,MAAAP,IAAA,GAAAE,OAAA;EAAAK,MAAA,YAAAA,CAAA;IAAA,OAAAP,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAQ,UAAA;EAAA,MAAAR,IAAA,GAAAE,OAAA;EAAAM,SAAA,YAAAA,CAAA;IAAA,OAAAR,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAS,SAAA;EAAA,MAAAT,IAAA,GAAAE,OAAA;EAAAO,QAAA,YAAAA,CAAA;IAAA,OAAAT,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAU,WAAA;EAAA,MAAAV,IAAA,GAAAE,OAAA;EAAAQ,UAAA,YAAAA,CAAA;IAAA,OAAAV,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAA8F,SAAAC,uBAAAU,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,KAX9F;AAwBO,MAAMW,WAAW,CAAoB;EAe1CC,WAAWA,CAASC,KAAgB,EAAUC,SAAoB,EAAUC,KAAgB,EAAE;IAAA,KAA1EF,KAAgB,GAAhBA,KAAgB;IAAA,KAAUC,SAAoB,GAApBA,SAAoB;IAAA,KAAUC,KAAgB,GAAhBA,KAAgB;IAAAxB,eAAA,eAdrF,MAAM;IAAAA,eAAA,sBACE,4BAA2B;IAAAA,eAAA,gBAClC,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,SAAS,EAAE,+DAA+D,CAAC,EACjF,CAAC,GAAG,EAAE,MAAM,EAAE,sCAAsC,CAAC,EACrD,CAAC,GAAG,EAAE,4BAA4B,EAAE,gDAAgD,CAAC,EACrF,CAAC,EAAE,EAAE,QAAQ,EAAE,wBAAwB,CAAC,EACxC,CAAC,EAAE,EAAE,YAAY,EAAE,0CAA0C,CAAC,CAC/D;IAAAA,eAAA,iBACQ,IAAI;IAAAA,eAAA,mBACF,IAAI;IAAAA,eAAA,wBACC,IAAI;EAE2E;EAE/F,MAAMyB,MAAMA,CAACC,IAAI,EAAEC,WAAwB,EAAmB;IAC5D,MAAM;MAAEC,OAAO;MAAEC,MAAM;MAAEC,MAAM;MAAEC;IAAU,CAAC,GAAGJ,WAAW;IAC1D,MAAMK,SAAS,GAAGA,CAACC,MAAc,EAAEC,KAAqB,KAAK;MAC3D,IAAID,MAAM,CAACE,SAAS,CAAC,CAAC,EAAE,OAAOF,MAAM,CAACG,IAAI;MAC1C,IAAIF,KAAK,EAAE,OAAQ,GAAED,MAAM,CAACI,QAAQ,CAAC,CAAE,KAAIH,KAAM,GAAE;MACnD,OAAOD,MAAM,CAACI,QAAQ,CAAC,CAAC;IAC1B,CAAC;IACD,MAAMf,KAAK,GAAG,MAAM,IAAI,CAACA,KAAK,CAACgB,QAAQ,CAAC;MACtCT,MAAM;MACNC,MAAM;MACNC,SAAS;MACTQ,eAAe,EAAE;IACnB,CAAC,CAAC;IACF,IAAIT,MAAM,EAAE;MACV,MAAMU,WAAW,GAAGlB,KAAK,CAACmB,MAAM,CAAEC,CAAC,IAAKA,CAAC,CAACC,QAAQ,CAAC;MACnD,IAAI,CAACH,WAAW,CAACI,MAAM,EAAE,OAAOC,gBAAK,CAACC,KAAK,CAAC,6BAA6B,CAAC;MAC1E,OAAOD,gBAAK,CAACC,KAAK,CAACN,WAAW,CAACO,GAAG,CAAEC,CAAC,IAAKA,CAAC,CAACZ,IAAI,CAAC,CAACa,IAAI,CAAC,IAAI,CAAC,CAAC;IAC/D;IACA,IAAIlB,SAAS,EAAE;MACb,MAAMmB,aAAa,GAAG5B,KAAK,CAACmB,MAAM,CAAEC,CAAC,IAAK,CAACA,CAAC,CAACC,QAAQ,CAAC;MACtD,IAAI,CAACO,aAAa,CAACN,MAAM,EAAE,OAAOC,gBAAK,CAACC,KAAK,CAAC,sBAAsB,CAAC;MACrE,OAAOD,gBAAK,CAACC,KAAK,CAACI,aAAa,CAACH,GAAG,CAAEC,CAAC,IAAKA,CAAC,CAACZ,IAAI,CAAC,CAACa,IAAI,CAAC,IAAI,CAAC,CAAC;IACjE;IACA,MAAME,WAAW,GAAG,IAAI,CAAC7B,KAAK,CAAC8B,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAAC9B,KAAK,CAAC+B,gBAAgB,CAAC,CAAC;IAClF,MAAMC,qBAAqB,GAAGH,WAAW,GAAG7B,KAAK,CAACiC,IAAI,CAAEb,CAAC,IAAKS,WAAW,CAACK,OAAO,CAACd,CAAC,CAACe,EAAE,CAAC,CAAC,GAAGC,SAAS;IACpG,MAAMC,YAAY,GAAGL,qBAAqB,GAAGA,qBAAqB,CAACpB,KAAK,GAAGwB,SAAS;IACpF,MAAME,6BAA6B,GAAGC,qBAAqB,CAACP,qBAAqB,EAAEQ,eAAe,CAAC;IACnG,IAAIC,cAAc,GAAGlC,MAAM,GACvB,EAAE,GACD,kBAAiBgB,gBAAK,CAACC,KAAK,CAACA,KAAK,CAACd,SAAS,CAACmB,WAAW,EAAEQ,YAAY,CAAC,CAAE,GAAEC,6BAA8B,EAAC;IAE/G,IAAIhC,OAAO,EAAE;MACX,MAAMoC,qBAAqB,GAAGV,qBAAqB,GAAGW,gBAAgB,CAACX,qBAAqB,CAACY,UAAU,CAAC,GAAG,EAAE;MAC7G,IAAIH,cAAc,EAAE;QAClBA,cAAc,IAAK,KAAIC,qBAAsB,EAAC;MAChD;IACF;IAEA,MAAMG,cAAc,GAAG7C,KAAK,CACzBmB,MAAM,CAAEC,CAAC,IAAK,CAACS,WAAW,CAACK,OAAO,CAACd,CAAC,CAACe,EAAE,CAAC,CAAC,CACzCV,GAAG,CAAEqB,QAAQ,IAAK;MACjB,MAAMC,kBAAkB,GAAGR,qBAAqB,CAACO,QAAQ,CAACN,eAAe,CAAC;MAC1E,IAAIlC,OAAO,EAAE;QACX,MAAM0C,SAAS,GAAI,KAAIzB,gBAAK,CAAC0B,IAAI,CAACvC,SAAS,CAACoC,QAAQ,CAACX,EAAE,EAAEW,QAAQ,CAAClC,KAAK,CAAC,CAAE,IAAG;QAC7E,MAAMgC,UAAU,GAAGD,gBAAgB,CAACG,QAAQ,CAACF,UAAU,CAAC;QACxD,OAAOI,SAAS,GAAGD,kBAAkB,CAACG,MAAM,CAAC,IAAI,CAAC,GAAGN,UAAU;MACjE;MACA,OAAQ,SAAQrB,gBAAK,CAACC,KAAK,CAACd,SAAS,CAACoC,QAAQ,CAACX,EAAE,EAAEW,QAAQ,CAAClC,KAAK,CAAC,CAAE,KAClEkC,QAAQ,CAACF,UAAU,CAACtB,MACrB,eAAcyB,kBAAmB,EAAC;IACrC,CAAC,CAAC,CACDpB,IAAI,CAAC,IAAI,CAAC;IAEb,MAAMwB,YAAY,GAAGA,CAAA,KAAM;MACzB,IAAIC,MAAM,GAAG,IAAI;MACjB,IAAI9C,OAAO,EAAE;QACX8C,MAAM,IAAI,kFAAkF;MAC9F,CAAC,MAAM;QACLA,MAAM,IACJ,iIAAiI;MACrI;MACA,IAAI,CAAC7C,MAAM,IAAI,IAAI,CAACN,SAAS,EAC3BmD,MAAM,IAAK,wFAAuF;MAEpG,OAAOA,MAAM;IACf,CAAC;IAED,OAAOC,iBAAiB,CAAC,CAAC,GAAGC,oBAAoB,CAAC,CAAC,GAAGH,YAAY,CAAC,CAAC;IAEpE,SAASE,iBAAiBA,CAAA,EAAG;MAC3B,OAAOZ,cAAc,GAAI,GAAEA,cAAe,IAAG,GAAG,EAAE;IACpD;IAEA,SAASa,oBAAoBA,CAAA,EAAG;MAC9B,IAAI,CAACT,cAAc,EAAE,OAAO,EAAE;MAC9B,OAAOtC,MAAM,GAAI,GAAEsC,cAAe,IAAG,GAAI,uBAAsBA,cAAe,IAAG;IACnF;EACF;EACA,MAAMU,IAAIA,CAACnD,IAAI,EAAEC,WAAwB,EAAE;IACzC,MAAM;MAAEE,MAAM;MAAEC,MAAM,GAAG,KAAK;MAAEC,SAAS,GAAG;IAAM,CAAC,GAAGJ,WAAW;IAEjE,MAAMmD,SAAS,GAAG,MAAM,IAAI,CAACxD,KAAK,CAACgB,QAAQ,CAAC;MAC1CT,MAAM;MACNU,eAAe,EAAE,IAAI;MACrBT,MAAM;MACNC;IACF,CAAC,CAAC;IACF,MAAMT,KAAK,GAAGwD,SAAS,CAAC/B,GAAG,CAACgC,0BAAiB,CAAC;IAC9C,MAAM5B,WAAW,GAAG,IAAI,CAAC7B,KAAK,CAAC0D,yBAAyB,CAAC,CAAC;IAC1D,OAAO;MAAE1D,KAAK;MAAE6B;IAAY,CAAC;EAC/B;AACF;AAAC8B,OAAA,CAAA7D,WAAA,GAAAA,WAAA;AAEM,MAAM8D,WAAW,CAAoB;EAY1C7D,WAAWA,CAASC,KAAgB,EAAUC,SAAoB,EAAUC,KAAgB,EAAE;IAAA,KAA1EF,KAAgB,GAAhBA,KAAgB;IAAA,KAAUC,SAAoB,GAApBA,SAAoB;IAAA,KAAUC,KAAgB,GAAhBA,KAAgB;IAAAxB,eAAA,eAXrF,kBAAkB;IAAAA,eAAA,sBACV,gEAA+D;IAAAA,eAAA,gBACtE,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,MAAM,EAAE,sCAAsC,CAAC,EACrD,CAAC,GAAG,EAAE,QAAQ,EAAE,sDAAsD,CAAC,CACxE;IAAAA,eAAA,iBACQ,IAAI;IAAAA,eAAA,mBACF,IAAI;IAAAA,eAAA,wBACC,IAAI;EAE2E;EAE/F,MAAMyB,MAAMA,CAAC,CAACW,IAAI,CAAW,EAAET,WAAwB,EAAmB;IACxE,MAAM;MAAEE;IAAO,CAAC,GAAGF,WAAW;IAE9B,IAAI,CAACS,IAAI,IAAIP,MAAM,EAAE;MACnB,MAAM,IAAIsD,KAAK,CAAC,gDAAgD,CAAC;IACnE;IACA,IAAI,CAAC/C,IAAI,EAAE;MACTA,IAAI,GAAG,IAAI,CAACd,KAAK,CAAC8D,kBAAkB,CAAC,CAAC,IAAIC,sBAAY;IACxD;IAEA,MAAMpD,MAAM,GAAG,MAAM,IAAI,CAACX,KAAK,CAACgE,WAAW,CAAClD,IAAI,CAAC;IAEjD,MAAMd,KAAK,GAAG,MAAM,IAAI,CAACA,KAAK,CAACgB,QAAQ,CAAC;MACtCF,IAAI,EAAEH,MAAM,CAACG,IAAI;MACjBP,MAAM,EAAEA,MAAM,GAAGI,MAAM,CAACT,KAAK,GAAGkC;IAClC,CAAC,CAAC;IAEF,MAAM6B,QAAQ,GAAGjE,KAAK,CAAC,CAAC,CAAC;IACzB,MAAMkE,KAAK,GAAI,2BAA0B3C,gBAAK,CAAC0B,IAAI,CAACgB,QAAQ,CAAC9B,EAAE,CAACpB,QAAQ,CAAC,CAAC,CAAE,IAAG;IAC/E,MAAMoD,MAAM,GAAI,WAAUF,QAAQ,CAACG,GAAG,EAAEC,QAAQ,IAAI,KAAM,KAAIJ,QAAQ,CAACG,GAAG,EAAEE,KAAK,IAAI,KAAM,KAAI;IAC/F,MAAMC,IAAI,GAAGN,QAAQ,CAACG,GAAG,EAAEG,IAAI,GAC1B,YAAW,IAAIC,IAAI,CAACC,QAAQ,CAACR,QAAQ,CAACG,GAAG,CAACG,IAAI,CAAC,CAAC,CAACG,cAAc,CAAC,CAAE,IAAG,GACtEtC,SAAS;IACb,MAAMuC,IAAI,GAAI,iBAAgBC,iCAAqB,IAAGjE,MAAM,CAACT,KAAK,CAAC2E,OAAO,CAAC,GAAG,EAAE,GAAG,CAAE,UAASlE,MAAM,CAACG,IAAK,IAAG;IAC7G,OAAOoD,KAAK,GAAGC,MAAM,GAAGI,IAAI,GAAGI,IAAI,GAAGhC,gBAAgB,CAACsB,QAAQ,CAACrB,UAAU,CAAC;EAC7E;EAEA,MAAMW,IAAIA,CAAC,CAACzC,IAAI,CAAW,EAAET,WAAwB,EAAE;IACrD,MAAM;MAAEE;IAAO,CAAC,GAAGF,WAAW;IAE9B,MAAML,KAAK,GAAG,MAAM,IAAI,CAACA,KAAK,CAACgB,QAAQ,CAAC;MACtCF,IAAI;MACJP;IACF,CAAC,CAAC;IAEF,OAAO,IAAAkD,0BAAiB,EAACzD,KAAK,CAAC,CAAC,CAAC,CAAC;EACpC;AACF;AAAC2D,OAAA,CAAAC,WAAA,GAAAA,WAAA;AAEM,MAAMkB,aAAa,CAAoB;EAgC5C/E,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eA/B7B,oBAAoB;IAAAA,eAAA,oBACf,CACV;MACEoC,IAAI,EAAE,WAAW;MACjBiE,WAAW,EAAE;IACf,CAAC,CACF;IAAArG,eAAA,sBACc,uCAAsC;IAAAA,eAAA,8BAC9B;AACzB,mFAAmF;IAAAA,eAAA,gBACzE,EAAE;IAAAA,eAAA,kBACA,CACR,CACE,GAAG,EACH,oBAAoB,EACpB,8KAA8K,CAC/K,EACD,CAAC,EAAE,EAAE,2BAA2B,EAAE,yBAAyB,CAAC,EAC5D,CACE,EAAE,EACF,cAAc,EACd,+GAA+G,CAChH,EACD,CACE,EAAE,EACF,qBAAqB,EACrB,8FAA8F,CAC/F,CACF;IAAAA,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACW,IAAI,CAAW,EAAEkE,iBAA+D,EAAmB;IAC/G,IAAI,CAAC,IAAI,CAAChF,KAAK,CAACC,SAAS,EAAE,MAAM,KAAIgF,kCAAqB,EAAC,CAAC;IAC5D,MAAMpD,WAAW,GAAG,MAAM,IAAI,CAAC7B,KAAK,CAACkF,cAAc,CAAC,CAAC;IACrD,IAAIF,iBAAiB,CAACG,WAAW,EAAEH,iBAAiB,CAAC9E,KAAK,GAAG8E,iBAAiB,CAACG,WAAW;IAC1F,MAAMC,MAAM,GAAG,MAAM,IAAI,CAACpF,KAAK,CAACqF,UAAU,CAACvE,IAAI,EAAEkE,iBAAiB,CAAC;IACnE,MAAMM,yBAAyB,GAAGN,iBAAiB,CAAC9E,KAAK,GACpD,oBAAmBqB,gBAAK,CAAC0B,IAAI,CAAC+B,iBAAiB,CAAC9E,KAAK,CAAE,EAAC,GACxD,qBAAoBqB,gBAAK,CAAC0B,IAAI,CAC7BmC,MAAM,CAACzE,MAAM,CAACT,KAChB,CAAE,oGAAmG;IACzG,MAAMgE,KAAK,GAAG3C,gBAAK,CAACC,KAAK,CACtB,sDAAqDD,gBAAK,CAAC0B,IAAI,CAACmC,MAAM,CAACxE,KAAK,IAAIwE,MAAM,CAACzE,MAAM,CAACG,IAAI,CAAE;AAC3G,QAAQe,WAAW,GAAGN,gBAAK,CAACgE,MAAM,CAAE,gDAA+C1D,WAAW,CAACf,IAAK,EAAC,CAAC,GAAG,EAAG;AAC5G,OACI,CAAC;IACD,MAAM0E,iBAAiB,GAAI,iCAAgCF,yBAA0B,EAAC;IACtF,OAAQ,GAAEpB,KAAM,KAAIsB,iBAAkB,EAAC;EACzC;AACF;AAAC7B,OAAA,CAAAmB,aAAA,GAAAA,aAAA;AAEM,MAAMW,YAAY,CAAoB;EAS3C1F,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAR7B,2BAA2B;IAAAA,eAAA,sBACpB,yBAAyB;IAAAA,eAAA,8BAChB;AACzB,mGAAmG;IAAAA,eAAA,gBACzF,EAAE;IAAAA,eAAA,kBACA,EAAE;IAAAA,eAAA,iBACH,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACuF,QAAQ,EAAE9E,KAAK,CAA2B,EAAmB;IACzE,MAAM;MAAED;IAAO,CAAC,GAAG,MAAM,IAAI,CAACX,KAAK,CAAC2F,SAAS,CAACD,QAAQ,EAAE9E,KAAK,CAAC;IAC9D,OAAQ,gCAA+BW,gBAAK,CAAC0B,IAAI,CAACrC,KAAK,CAAE,aAAYW,gBAAK,CAAC0B,IAAI,CAACtC,MAAM,CAACI,QAAQ,CAAC,CAAC,CAAE,EAAC;EACtG;AACF;AAAC4C,OAAA,CAAA8B,YAAA,GAAAA,YAAA;AAEM,MAAMG,iBAAiB,CAAoB;EAQhD7F,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAP7B,8BAA8B;IAAAA,eAAA,sBACvB,sCAAsC;IAAAA,eAAA,kBAC1C,IAAI;IAAAA,eAAA,gBACN,KAAK;IAAAA,eAAA,kBACH,EAAE;IAAAA,eAAA,iBACH,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACuF,QAAQ,CAAW,EAAmB;IAClD,MAAM/E,MAAM,GAAG,MAAM,IAAI,CAACX,KAAK,CAACgE,WAAW,CAAC0B,QAAQ,CAAC;IACrD,MAAMG,WAAW,GAAG,MAAM,IAAI,CAAC7F,KAAK,CAAC8F,cAAc,CAACnF,MAAM,CAAC;IAC3D,OAAOoF,IAAI,CAACC,SAAS,CAACH,WAAW,CAACI,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;EACxD;AACF;AAACtC,OAAA,CAAAiC,iBAAA,GAAAA,iBAAA;AAIM,MAAMM,eAAe,CAAoB;EAY9CnG,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAX7B,uBAAuB;IAAAA,eAAA,sBAChB,8FAA8F;IAAAA,eAAA,oBAChG,CACV;MAAEoC,IAAI,EAAE,YAAY;MAAEiE,WAAW,EAAE;IAAwE,CAAC,CAC7G;IAAArG,eAAA,gBACO,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,8BAA8B,EAAE,2DAA2D,CAAC,CACnG;IAAAA,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACgG,SAAS,CAAW,EAAEC,IAAsB,EAAmB;IAC3E,MAAMhB,MAAM,GAAG,MAAM,IAAI,CAACpF,KAAK,CAACqG,eAAe,CAACF,SAAS,EAAEC,IAAI,CAAC;IAChE,OAAO,IAAAE,0BAAc,EAAClB,MAAM,EAAE,CAAC,CAAC,EAAG,qDAAoDe,SAAU,EAAC,CAAC;EACrG;AACF;AAACxC,OAAA,CAAAuC,eAAA,GAAAA,eAAA;AAEM,MAAMK,aAAa,CAAoB;EAgB5CxG,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAf7B,qBAAqB;IAAAA,eAAA,sBACd,8FAA8F;IAAAA,eAAA,8BACrF;AACzB;AACA;AACA,iHAAiH;IAAAA,eAAA,oBACnG,CACV;MAAEoC,IAAI,EAAE,YAAY;MAAEiE,WAAW,EAAE;IAAwE,CAAC,CAC7G;IAAArG,eAAA,gBACO,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,8BAA8B,EAAE,2DAA2D,CAAC,CACnG;IAAAA,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACgG,SAAS,CAAW,EAAEC,IAAsB,EAAmB;IAC3E,MAAMhB,MAAM,GAAG,MAAM,IAAI,CAACpF,KAAK,CAACwG,aAAa,CAACL,SAAS,EAAEC,IAAI,CAAC;IAC9D,OAAO,IAAAE,0BAAc,EAAClB,MAAM,EAAE,CAAC,CAAC,EAAG,kDAAiDe,SAAU,EAAC,CAAC;EAClG;AACF;AAACxC,OAAA,CAAA4C,aAAA,GAAAA,aAAA;AAEM,MAAME,cAAc,CAAoB;EAO7C1G,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAN7B,qBAAqB;IAAAA,eAAA,sBACd,8DAA8D;IAAAA,eAAA,gBACpE,EAAE;IAAAA,eAAA,kBACA,CAAC,CAAC,EAAE,EAAE,aAAa,EAAE,8BAA8B,CAAC,CAAC;IAAAA,eAAA,iBACtD,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACuF,QAAQ,CAAW,EAAE;IAAEvD;EAAoB,CAAC,EAAmB;IAC3E,MAAMxB,MAAM,GAAG+E,QAAQ,GAAG,MAAM,IAAI,CAAC1F,KAAK,CAACgE,WAAW,CAAC0B,QAAQ,CAAC,GAAG,IAAI,CAAC1F,KAAK,CAAC8B,gBAAgB,CAAC,CAAC;IAChG,IAAI,CAACnB,MAAM,IAAIA,MAAM,CAACE,SAAS,CAAC,CAAC,EAAE,MAAM,KAAI6F,oBAAQ,EAAE,mDAAkD,CAAC;IAC1G,MAAM,IAAI,CAAC1G,KAAK,CAAC2G,iBAAiB,CAAChG,MAAM,CAAC;IAC1C,MAAMkF,WAAW,GAAG,MAAM,IAAI,CAAC7F,KAAK,CAAC8F,cAAc,CAACnF,MAAM,CAAC;IAC3D,MAAMiG,OAAO,GAAGf,WAAW,CAACgB,UAAU,CAAC,CAAC;IACxC,IAAI1E,EAAE,EAAE;MACN,MAAM2E,WAAW,GAAGF,OAAO,CAACzE,EAAE,CAAC;MAC/B,IAAI,CAAC2E,WAAW,EAAE,MAAM,IAAIjD,KAAK,CAAE,cAAa1B,EAAG,gBAAe,CAAC;MACnE,MAAMoC,IAAI,GAAG,IAAIC,IAAI,CAACC,QAAQ,CAACqC,WAAW,CAAC1C,GAAG,CAACG,IAAI,CAAC,CAAC,CAACG,cAAc,CAAC,CAAC;MACtE,MAAMqC,OAAO,GAAGD,WAAW,CAAC1C,GAAG,CAAC2C,OAAO;MACvC,OAAQ,GAAE5E,EAAG,IAAGoC,IAAK,IAAGuC,WAAW,CAAC1C,GAAG,CAACC,QAAS,IAAG0C,OAAQ,OAAMD,WAAW,CAAClE,UAAU,CAACjB,IAAI,CAAC,IAAI,CAAE,EAAC;IACvG;IACA,MAAMqF,KAAK,GAAGlI,MAAM,CAACmI,IAAI,CAACL,OAAO,CAAC,CAACnF,GAAG,CAAEyF,IAAI,IAAK;MAC/C,MAAMJ,WAAW,GAAGF,OAAO,CAACM,IAAI,CAAC;MACjC,MAAM3C,IAAI,GAAG,IAAIC,IAAI,CAACC,QAAQ,CAACqC,WAAW,CAAC1C,GAAG,CAACG,IAAI,CAAC,CAAC,CAACG,cAAc,CAAC,CAAC;MACtE,MAAMqC,OAAO,GAAGD,WAAW,CAAC1C,GAAG,CAAC2C,OAAO;MACvC,OAAQ,GAAEG,IAAK,IAAG3C,IAAK,IAAGuC,WAAW,CAAC1C,GAAG,CAACC,QAAS,IAAG0C,OAAQ,EAAC;IACjE,CAAC,CAAC;IACF,OAAOC,KAAK,CAACrF,IAAI,CAAC,IAAI,CAAC;EACzB;AACF;AAACgC,OAAA,CAAA8C,cAAA,GAAAA,cAAA;AAEM,MAAMU,kBAAkB,CAAoB;EAcjDpH,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAb7B,kCAAkC;IAAAA,eAAA,sBAC1B,oCAAmC;IAAAA,eAAA,8BAC5B,gEAAgE;IAAAA,eAAA,gBAC9E,EAAE;IAAAA,eAAA,kBACA,CACR,CACE,GAAG,EACH,uBAAuB,EACvB,6FAA6F,CAC9F,CACF;IAAAA,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACgF,WAAW,CAAW,EAAE;IAAEO;EAAgC,CAAC,EAAmB;IAC1F,MAAM;MAAE0B,iBAAiB;MAAEC;IAAU,CAAC,GAAG,MAAM,IAAI,CAACrH,KAAK,CAACsH,WAAW,CAACnC,WAAW,EAAEO,QAAQ,CAAC;IAC5F,OAAQ,uBAAsBnE,gBAAK,CAAC0B,IAAI,CAACoE,SAAS,CAAE,0BAAyB9F,gBAAK,CAAC0B,IAAI,CACrFmE,iBACF,CAAE,OAAM7F,gBAAK,CAAC0B,IAAI,CAACkC,WAAW,CAAE,EAAC;EACnC;AACF;AAACxB,OAAA,CAAAwD,kBAAA,GAAAA,kBAAA;AAEM,MAAMI,aAAa,CAAoB;EAS5CxH,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAR7B,mBAAmB;IAAAA,eAAA,sBACX,4CAA2C;IAAAA,eAAA,8BACpC,gEAAgE;IAAAA,eAAA,gBAC9E,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,uBAAuB,EAAE,4EAA4E,CAAC,CAC7G;IAAAA,eAAA,iBACQ,IAAI;EAC0B;EAEvC,MAAMyB,MAAMA,CAAC,CAACqH,OAAO,CAAW,EAAE;IAAE9B;EAAgC,CAAC,EAAmB;IACtF,MAAM;MAAE+B;IAAY,CAAC,GAAG,MAAM,IAAI,CAACzH,KAAK,CAAC0H,MAAM,CAACF,OAAO,EAAE9B,QAAQ,CAAC;IAClE,OAAQ,YAAWnE,gBAAK,CAAC0B,IAAI,CAACwE,WAAW,CAAE,+BAA8BlG,gBAAK,CAAC0B,IAAI,CAACuE,OAAO,CAAE,GAAE;EACjG;AACF;AAAC7D,OAAA,CAAA4D,aAAA,GAAAA,aAAA;AAEM,MAAMI,aAAa,CAAoB;EAiB5C5H,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAhB7B,mBAAmB;IAAAA,eAAA,oBACd,CAAC;MAAEoC,IAAI,EAAE,UAAU;MAAEiE,WAAW,EAAE;IAA4C,CAAC,CAAC;IAAArG,eAAA,sBAC7E,wBAAuB;IAAAA,eAAA,gBAC9B,aAAa;IAAAA,eAAA,gBACb,EAAE;IAAAA,eAAA,kBACA,CACR,CACE,GAAG,EACH,QAAQ,EACR,0IAA0I,CAC3I,EACD,CAAC,GAAG,EAAE,OAAO,EAAE,uEAAuE,CAAC,EACvF,CAAC,GAAG,EAAE,QAAQ,EAAE,mBAAmB,CAAC,CACrC;IAAAA,eAAA,iBACQ,IAAI;EAE0B;EAEvC,MAAMyB,MAAMA,CACV,CAACyH,KAAK,CAAa,EACnB;IACErH,MAAM,GAAG,KAAK;IACdsH,KAAK,GAAG,KAAK;IACbC,MAAM,GAAG;EAKX,CAAC,EACgB;IACjB,IAAI,CAACA,MAAM,EAAE;MACX,MAAMC,kBAAkB,GAAG,MAAM,IAAAC,2BAAgB,EAAC,CAAC;MACnD;MACA,IAAI,CAAC,IAAAC,aAAE,EAACF,kBAAkB,CAACG,aAAa,CAAC,EAAE;QACzC,MAAM,KAAIxB,oBAAQ,EAAC,kCAAkC,CAAC;MACxD;IACF;IACA,MAAMyB,WAAW,GAAG,MAAM,IAAI,CAACnI,KAAK,CAACoI,WAAW,CAACR,KAAK,EAAE;MAAErH,MAAM;MAAEsH;IAAM,CAAC,CAAC;IAC1E,OAAOtG,gBAAK,CAACC,KAAK,CAAE,+CAA8CD,gBAAK,CAAC0B,IAAI,CAACkF,WAAW,CAACxG,IAAI,CAAC,IAAI,CAAC,CAAE,EAAC,CAAC;EACzG;AACF;AAACgC,OAAA,CAAAgE,aAAA,GAAAA,aAAA;AAIM,MAAMU,iBAAiB,CAAoB;EAyBhDtI,WAAWA,CAASE,SAAoB,EAAUD,KAAgB,EAAE;IAAA,KAAhDC,SAAoB,GAApBA,SAAoB;IAAA,KAAUD,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAxB3D,iCAAiC;IAAAA,eAAA,oBAC5B,CACV;MACEoC,IAAI,EAAE,mBAAmB;MACzBiE,WAAW,EAAEuD;IACf,CAAC,CACF;IAAA5J,eAAA,sBACc,8CAA6C;IAAAA,eAAA,gBACpD,aAAa;IAAAA,eAAA,gBACb,IAAI;IAAAA,eAAA,kBACF,CACR,CACE,EAAE,EACF,gBAAgB,EAChB,mGAAmG,CACpG,EACD,CACE,EAAE,EACF,aAAa,EACb,mGAAmG,CACpG,CACF;IAAAA,eAAA,iBACQ,IAAI;EAEwD;EAErE,MAAMyB,MAAMA,CAAA,EAAoB;IAC9B,MAAM,KAAIuG,oBAAQ,EAAE,wFAAuF,CAAC;EAC9G;AACF;AAAC/C,OAAA,CAAA0E,iBAAA,GAAAA,iBAAA;AAEM,MAAME,aAAa,CAAoB;EAe5CxI,WAAWA,CAASyI,SAAoB,EAAE;IAAA,KAAtBA,SAAoB,GAApBA,SAAoB;IAAA9J,eAAA,eAdjC,eAAe;IAAAA,eAAA,sBACP,gEAA+D;IAAAA,eAAA,oBAClE,CAAC;MAAEoC,IAAI,EAAE,MAAM;MAAEiE,WAAW,EAAE;IAAuB,CAAC,CAAC;IAAArG,eAAA,gBAC3D,EAAE;IAAAA,eAAA,kBACA,CACR,CAAC,GAAG,EAAE,8BAA8B,EAAE,wDAAwD,CAAC,EAC/F,CACE,GAAG,EACH,6BAA6B,EAC7B,wIAAwI,CACzI,CACF;IAAAA,eAAA,iBACQ,IAAI;EAE8B;EAE3C,MAAMyB,MAAMA,CACV,CAACsI,IAAI,CAAW,EAChB;IAAEC,0BAA0B,GAAG,KAAK;IAAEC;EAAmE,CAAC,EACzF;IACjB,OAAO,IAAI,CAACH,SAAS,CAACrI,MAAM,CAAC,CAACsI,IAAI,CAAC,EAAE;MAAEC,0BAA0B;MAAEC;IAAQ,CAAC,CAAC;EAC/E;AACF;AAAChF,OAAA,CAAA4E,aAAA,GAAAA,aAAA;AAEM,MAAMK,YAAY,CAAoB;EAQ3C7I,WAAWA,CAAS8I,QAAkB,EAAU7I,KAAgB,EAAE;IAAA,KAA9C6I,QAAkB,GAAlBA,QAAkB;IAAA,KAAU7I,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAPzD,iBAAiB;IAAAA,eAAA,sBACT,iGAAgG;IAAAA,eAAA,8BACxF,wEAAuE;IAAAA,eAAA,gBACtF,EAAE;IAAAA,eAAA,kBACA,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,wBAAwB,CAAC,CAAC;IAAAA,eAAA,iBACzC,IAAI;EAEsD;EAEnE,MAAMyB,MAAMA,CAAC,CAACQ,MAAM,CAAW,EAAE;IAAEmI;EAAuB,CAAC,EAAmB;IAC5E,IAAIA,GAAG,EAAE,OAAO,IAAI,CAACD,QAAQ,CAAC1I,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE;MAAEH,KAAK,EAAE;IAAK,CAAC,CAAC;IAC3D,MAAM+I,YAAY,GAAGA,CAAA,KAAM;MACzB,IAAIpI,MAAM,EAAE,OAAOA,MAAM;MACzB,MAAMkB,WAAW,GAAG,IAAI,CAAC7B,KAAK,CAAC8B,gBAAgB,CAAC,CAAC;MACjD,IAAI,CAACD,WAAW,IAAIA,WAAW,CAAChB,SAAS,CAAC,CAAC,EACzC,MAAM,KAAI6F,oBAAQ,EAAC,0FAA0F,CAAC;MAChH,OAAO7E,WAAW,CAACd,QAAQ,CAAC,CAAC;IAC/B,CAAC;IACD,MAAM0H,IAAI,GAAGM,YAAY,CAAC,CAAC;IAC3B,OAAO,IAAI,CAACF,QAAQ,CAAC1I,MAAM,CAAC,CAAC,CAACsI,IAAI,CAAC,CAAC,EAAE;MAAEzI,KAAK,EAAE;IAAK,CAAC,CAAC;EACxD;AACF;AAAC2D,OAAA,CAAAiF,YAAA,GAAAA,YAAA;AAEM,MAAMI,OAAO,CAAoB;EAkBtCjJ,WAAWA,CAASC,KAAgB,EAAUC,SAAoB,EAAUC,KAAgB,EAAE;IAAA,KAA1EF,KAAgB,GAAhBA,KAAgB;IAAA,KAAUC,SAAoB,GAApBA,SAAoB;IAAA,KAAUC,KAAgB,GAAhBA,KAAgB;IAAAxB,eAAA,eAjBrF,oBAAoB;IAAAA,eAAA,sBACb,gEAAgE;IAAAA,eAAA,gBACtE,GAAG;IAAAA,eAAA,kBACD,CACR,CAAC,GAAG,EAAE,SAAS,EAAE,+DAA+D,CAAC,EACjF,CAAC,GAAG,EAAE,MAAM,EAAE,mCAAmC,CAAC,EAClD,CAAC,GAAG,EAAE,4BAA4B,EAAE,gDAAgD,CAAC,EACrF,CAAC,EAAE,EAAE,QAAQ,EAAE,wBAAwB,CAAC,EACxC,CAAC,EAAE,EAAE,YAAY,EAAE,0CAA0C,CAAC,CAC/D;IAAAA,eAAA,iBACQ,IAAI;IAAAA,eAAA,gBACL,aAAa;IAAAA,eAAA,mBACV,IAAI;IAAAA,eAAA,wBACC,IAAI;IAAAA,eAAA,kBACV,4BAA4B;IAAAA,eAAA,mBAChB,EAAE;EAEuE;EAE/F,MAAMyB,MAAMA,CAAC,CAACW,IAAI,CAAW,EAAET,WAAwB,EAAmB;IACxE,OAAO,IAAIP,WAAW,CAAC,IAAI,CAACE,KAAK,EAAE,IAAI,CAACC,SAAS,EAAE,IAAI,CAACC,KAAK,CAAC,CAACC,MAAM,CAAC,CAACW,IAAI,CAAC,EAAET,WAAW,CAAC;EAC5F;AACF;AAACsD,OAAA,CAAAqF,OAAA,GAAAA,OAAA;AAEM,MAAMC,mBAAmB,CAAoB;EAOlDlJ,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAN7B,0BAA0B;IAAAA,eAAA,sBACnB,4CAA4C;IAAAA,eAAA,kBAChD,EAAE;IAAAA,eAAA,iBACH,IAAI;IAAAA,eAAA,wBACG,KAAK;EAEkB;EAEvC,MAAMyB,MAAMA,CAAC,CAACuF,QAAQ,CAAW,EAAmB;IAClD,MAAM;MAAEN,MAAM;MAAE2B;IAAQ,CAAC,GAAG,MAAM,IAAI,CAAC/G,KAAK,CAACkJ,gBAAgB,CAACxD,QAAQ,CAAC;IAEvE,IAAIN,MAAM,EAAE;MACV,OAAO7D,gBAAK,CAACC,KAAK,CACf,oEACCkE,QAAQ,IAAI,IAAI,CAAC1F,KAAK,CAAC8D,kBAAkB,CAAC,CAC3C,EACH,CAAC;IACH;IAEA,OAAOvC,gBAAK,CAAC4H,GAAG,CAAE,GAAEpC,OAAQ,IAAG,CAAC;EAClC;AACF;AAACpD,OAAA,CAAAsF,mBAAA,GAAAA,mBAAA;AAEM,MAAMG,gBAAgB,CAAoB;EAW/CrJ,WAAWA,CAASC,KAAgB,EAAE;IAAA,KAAlBA,KAAgB,GAAhBA,KAAgB;IAAAtB,eAAA,eAV7B,yCAAyC;IAAAA,eAAA,sBAClC,kEAAkE;IAAAA,eAAA,oBACpE,CACV;MAAEoC,IAAI,EAAE,cAAc;MAAEiE,WAAW,EAAE;IAAwE,CAAC,EAC9G;MAAEjE,IAAI,EAAE,WAAW;MAAEiE,WAAW,EAAE;IAAkE,CAAC,CACtG;IAAArG,eAAA,kBACS,EAAE;IAAAA,eAAA,iBACH,IAAI;IAAAA,eAAA,wBACG,KAAK;EAEkB;EAEvC,MAAMyB,MAAMA,CAAC,CAACkJ,WAAW,EAAE3D,QAAQ,CAAmB,EAAmB;IACvE,MAAM;MAAEN,MAAM;MAAE2B;IAAQ,CAAC,GAAG,MAAM,IAAI,CAAC/G,KAAK,CAACsJ,aAAa,CAACD,WAAW,EAAE3D,QAAQ,CAAC;IAEjF,IAAIN,MAAM,EACR,OAAO7D,gBAAK,CAACC,KAAK,CACf,iBAAgB6H,WAAY,qEAC3B3D,QAAQ,IAAI,IAAI,CAAC1F,KAAK,CAAC8D,kBAAkB,CAAC,CAC3C,EACH,CAAC;IAEH,OAAOvC,gBAAK,CAAC4H,GAAG,CACb,GAAEpC,OAAO,IAAI,EAAG,mBAAkBsC,WAAY,0DAC7C3D,QAAQ,IAAI,IAAI,CAAC1F,KAAK,CAAC8D,kBAAkB,CAAC,CAC3C,EACH,CAAC;EACH;AACF;AAACH,OAAA,CAAAyF,gBAAA,GAAAA,gBAAA;AAED,SAASzG,gBAAgBA,CAACC,UAAkC,EAAU;EACpE,MAAM2G,eAAe,GAAI,KAAIhI,gBAAK,CAAC0B,IAAI,CAAE,eAAcL,UAAU,CAACtB,MAAO,GAAE,CAAE,IAAG;EAChF,MAAMkI,aAAa,GAAG5G,UAAU,CAACnB,GAAG,CAAEgI,CAAC,IAAM,OAAMA,CAAC,CAACtH,EAAE,CAACpB,QAAQ,CAAC,CAAE,MAAK0I,CAAC,CAACC,IAAK,EAAC,CAAC,CAAC/H,IAAI,CAAC,IAAI,CAAC;EAC5F,OAAO4H,eAAe,GAAGC,aAAa;AACxC;AAEA,SAASjH,qBAAqBA,CAACoH,SAAsC,EAAU;EAC7E,IAAI,CAACA,SAAS,EAAE,OAAO,EAAE;EACzB,OAAQ,OAAO,GAAEpI,gBAAK,CAACgE,MAAM,CAAC,kBAAkB,CAAE,SAAQoE,SAAS,CAACxH,EAAG,MACrEwH,SAAS,CAACD,IAAI,IACb,iCAAgCC,SAAS,CAACxH,EAAE,CAACyH,QAAS,8DACxD,EAAE,IAAG;AACR","ignoreList":[]}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yn","_laneId","_checkout","_workspace","_lanes","_bitError","_prompts","_constants","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","r","e","Symbol","toPrimitive","call","TypeError","String","Number","LaneListCmd","constructor","lanes","workspace","scope","report","args","laneOptions","details","remote","merged","notMerged","laneIdStr","laneId","alias","isDefault","name","toString","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","join","unmergedLanes","currentLane","getCurrentLaneId","getDefaultLaneId","laneDataOfCurrentLane","find","isEqual","id","undefined","currentAlias","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","currentLaneComponents","outputComponents","components","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","lanesData","serializeLaneData","getCurrentLaneNameOrAlias","exports","LaneShowCmd","Error","getCurrentLaneName","DEFAULT_LANE","parseLaneId","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","link","DEFAULT_CLOUD_DOMAIN","replace","LaneCreateCmd","description","createLaneOptions","OutsideWorkspaceError","getCurrentLane","remoteScope","result","createLane","remoteScopeOrDefaultScope","yellow","remoteScopeOutput","LaneAliasCmd","laneName","aliasLane","CatLaneHistoryCmd","laneHistory","getLaneHistory","JSON","stringify","toObject","LaneCheckoutCmd","historyId","opts","checkoutHistory","checkoutOutput","LaneRevertCmd","revertHistory","LaneHistoryCmd","BitError","importLaneHistory","history","getHistory","historyItem","message","items","keys","uuid","LaneEjectCmd","COMPONENT_PATTERN_HELP","pattern","results","eject","body","LaneChangeScopeCmd","remoteScopeBefore","localName","changeScope","LaneRenameCmd","newName","currentName","rename","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","laneResults","removeLanes","LaneRemoveCompCmd","LaneImportCmd","switchCmd","lane","skipDependencyInstallation","LaneFetchCmd","fetchCmd","all","getLaneIdStr","LaneCmd","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","head","component","fullName"],"sources":["lane.cmd.ts"],"sourcesContent":["// eslint-disable-next-line max-classes-per-file\nimport chalk from 'chalk';\nimport yn from 'yn';\nimport { ScopeMain } from '@teambit/scope';\nimport { DEFAULT_LANE, LaneId } from '@teambit/lane-id';\nimport { checkoutOutput } from '@teambit/checkout';\nimport { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData, serializeLaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport { COMPONENT_PATTERN_HELP, DEFAULT_CLOUD_DOMAIN } from '@teambit/legacy/dist/constants';\nimport { CreateLaneOptions, LanesMain } from './lanes.main.runtime';\nimport { SwitchCmd } from './switch.cmd';\nimport { FetchCmd } from '@teambit/importer';\n\ntype LaneOptions = {\n details?: boolean;\n remote?: string;\n merged?: boolean;\n notMerged?: boolean;\n json?: boolean;\n};\n\nexport class LaneListCmd implements Command {\n name = 'list';\n description = `list local or remote lanes`;\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', \"show lanes' details in a json format\"],\n ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report(args, laneOptions: LaneOptions): Promise<string> {\n const { details, remote, merged, notMerged } = laneOptions;\n const laneIdStr = (laneId: LaneId, alias?: string | null) => {\n if (laneId.isDefault()) return laneId.name;\n if (alias) return `${laneId.toString()} (${alias})`;\n return laneId.toString();\n };\n const lanes = await this.lanes.getLanes({\n remote,\n merged,\n notMerged,\n showDefaultLane: true,\n });\n if (merged) {\n const mergedLanes = lanes.filter((l) => l.isMerged);\n if (!mergedLanes.length) return chalk.green('None of the lanes is merged');\n return chalk.green(mergedLanes.map((m) => m.name).join('\\n'));\n }\n if (notMerged) {\n const unmergedLanes = lanes.filter((l) => !l.isMerged);\n if (!unmergedLanes.length) return chalk.green('All lanes are merged');\n return chalk.green(unmergedLanes.map((m) => m.name).join('\\n'));\n }\n const currentLane = this.lanes.getCurrentLaneId() || this.lanes.getDefaultLaneId();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => currentLane.isEqual(l.id)) : undefined;\n const currentAlias = laneDataOfCurrentLane ? laneDataOfCurrentLane.alias : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = remote\n ? ''\n : `current lane - ${chalk.green.green(laneIdStr(currentLane, currentAlias))}${currentLaneReadmeComponentStr}`;\n\n if (details) {\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => !currentLane.isEqual(l.id))\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneIdStr(laneData.id, laneData.alias))}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneIdStr(laneData.id, laneData.alias))} (${\n laneData.components.length\n } components)${readmeComponentStr}`;\n })\n .join('\\n');\n\n const outputFooter = () => {\n let footer = '\\n';\n if (details) {\n footer += 'You can use --merged and --not-merged to see which of the lanes is fully merged.';\n } else {\n footer +=\n \"to get more info on all lanes in local scope use 'bit lane list --details', or 'bit lane show <lane-name>' for a specific lane.\";\n }\n if (!remote && this.workspace)\n footer += `\\nswitch lanes using 'bit switch <name>'. create lanes using 'bit lane create <name>'.`;\n\n return footer;\n };\n\n return outputCurrentLane() + outputAvailableLanes() + outputFooter();\n\n function outputCurrentLane() {\n return currentLaneStr ? `${currentLaneStr}\\n` : '';\n }\n\n function outputAvailableLanes() {\n if (!availableLanes) return '';\n return remote ? `${availableLanes}\\n` : `\\nAvailable lanes:\\n${availableLanes}\\n`;\n }\n }\n async json(args, laneOptions: LaneOptions) {\n const { remote, merged = false, notMerged = false } = laneOptions;\n\n const lanesData = await this.lanes.getLanes({\n remote,\n showDefaultLane: true,\n merged,\n notMerged,\n });\n const lanes = lanesData.map(serializeLaneData);\n const currentLane = this.lanes.getCurrentLaneNameOrAlias();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show [lane-name]';\n description = `show lane details. if no lane specified, show the current lane`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote', 'show details of the remote head of the provided lane'],\n ] as CommandOptions;\n loader = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n const { remote } = laneOptions;\n\n if (!name && remote) {\n throw new Error('remote flag is not supported without lane name');\n }\n if (!name) {\n name = this.lanes.getCurrentLaneName() || DEFAULT_LANE;\n }\n\n const laneId = await this.lanes.parseLaneId(name);\n\n const lanes = await this.lanes.getLanes({\n name: laneId.name,\n remote: remote ? laneId.scope : undefined,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(onlyLane.id.toString())}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date\n ? `created: ${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n`\n : undefined;\n const link = `link: https://${DEFAULT_CLOUD_DOMAIN}/${laneId.scope.replace('.', '/')}/~lane/${laneId.name}\\n`;\n return title + author + date + link + outputComponents(onlyLane.components);\n }\n\n async json([name]: [string], laneOptions: LaneOptions) {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n\n return serializeLaneData(lanes[0]);\n }\n}\n\nexport class LaneCreateCmd implements Command {\n name = 'create <lane-name>';\n arguments = [\n {\n name: 'lane-name',\n description: 'the name for the new lane',\n },\n ];\n description = `creates a new lane and switches to it`;\n extendedDescription = `a lane created from main (default-lane) is empty until components are snapped.\na lane created from another lane contains all the components of the original lane.`;\n alias = '';\n options = [\n [\n 's',\n 'scope <scope-name>',\n 'remote scope to which this lane will be exported, default to the workspace.json\\'s defaultScope (can be changed up to first export of the lane with \"bit lane change-scope\")',\n ],\n ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'],\n [\n '',\n 'alias <name>',\n 'a local alias to refer to this lane, defaults to the `<lane-name>` (can be added later with \"bit lane alias\")',\n ],\n [\n '',\n 'fork-lane-new-scope',\n 'create the new lane in a different scope than its parent lane (if created from another lane)',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions & { remoteScope?: string }): Promise<string> {\n if (!this.lanes.workspace) throw new OutsideWorkspaceError();\n const currentLane = await this.lanes.getCurrentLane();\n if (createLaneOptions.remoteScope) createLaneOptions.scope = createLaneOptions.remoteScope;\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.scope\n ? `the remote scope ${chalk.bold(createLaneOptions.scope)}`\n : `the default-scope ${chalk.bold(\n result.laneId.scope\n )}. you can change the lane's scope, before it is exported, with the \"bit lane change-scope\" command`;\n const title = chalk.green(\n `successfully added and checked out to the new lane ${chalk.bold(result.alias || result.laneId.name)}\n ${currentLane ? chalk.yellow(`\\nnote - your new lane will be based on lane ${currentLane.name}`) : ''}\n `\n );\n const remoteScopeOutput = `this lane will be exported to ${remoteScopeOrDefaultScope}`;\n return `${title}\\n${remoteScopeOutput}`;\n }\n}\n\nexport class LaneAliasCmd implements Command {\n name = 'alias <lane-name> <alias>';\n description = 'adds an alias to a lane';\n extendedDescription = `an alias is a name that can be used locally to refer to a lane. it is saved locally and never reaches the remote.\nit is useful e.g. when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName, alias]: [string, string, string]): Promise<string> {\n const { laneId } = await this.lanes.aliasLane(laneName, alias);\n return `successfully added the alias ${chalk.bold(alias)} for lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class CatLaneHistoryCmd implements Command {\n name = 'cat-lane-history <lane-name>';\n description = 'cat lane-history object by lane-name';\n private = true;\n alias = 'clh';\n options = [] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const laneId = await this.lanes.parseLaneId(laneName);\n const laneHistory = await this.lanes.getLaneHistory(laneId);\n return JSON.stringify(laneHistory.toObject(), null, 2);\n }\n}\n\nexport type LaneCheckoutOpts = { skipDependencyInstallation?: boolean };\n\nexport class LaneCheckoutCmd implements Command {\n name = 'checkout <history-id>';\n description = 'EXPERIMENTAL. checkout to a previous history of the current lane. see also \"bit lane revert\"';\n arguments = [\n { name: 'history-id', description: 'the history-id to checkout to. run \"bit lane history\" to list the ids' },\n ];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the checked out components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([historyId]: [string], opts: LaneCheckoutOpts): Promise<string> {\n const result = await this.lanes.checkoutHistory(historyId, opts);\n return checkoutOutput(result, {}, `successfully checked out according to history-id: ${historyId}`);\n }\n}\n\nexport class LaneRevertCmd implements Command {\n name = 'revert <history-id>';\n description = 'EXPERIMENTAL. revert to a previous history of the current lane. see also \"bit lane checkout\"';\n extendedDescription = `revert is similar to \"lane checkout\", but it keeps the versions and only change the files.\nchoose one or the other based on your needs.\nif you want to continue working on this lane and needs the changes from the history to be the head, then use \"lane revert\".\nif you want to fork the lane from a certain point in history, use \"lane checkout\" and create a new lane from it.`;\n arguments = [\n { name: 'history-id', description: 'the history-id to checkout to. run \"bit lane history\" to list the ids' },\n ];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the checked out components'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([historyId]: [string], opts: LaneCheckoutOpts): Promise<string> {\n const result = await this.lanes.revertHistory(historyId, opts);\n return checkoutOutput(result, {}, `successfully reverted according to history-id: ${historyId}`);\n }\n}\n\nexport class LaneHistoryCmd implements Command {\n name = 'history [lane-name]';\n description = 'EXPERIMENTAL. show lane history, default to the current lane';\n alias = '';\n options = [['', 'id <string>', 'show a specific history item']] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string], { id }: { id?: string }): Promise<string> {\n const laneId = laneName ? await this.lanes.parseLaneId(laneName) : this.lanes.getCurrentLaneId();\n if (!laneId || laneId.isDefault()) throw new BitError(`unable to show history of the default lane (main)`);\n await this.lanes.importLaneHistory(laneId);\n const laneHistory = await this.lanes.getLaneHistory(laneId);\n const history = laneHistory.getHistory();\n if (id) {\n const historyItem = history[id];\n if (!historyItem) throw new Error(`history id ${id} was not found`);\n const date = new Date(parseInt(historyItem.log.date)).toLocaleString();\n const message = historyItem.log.message;\n return `${id} ${date} ${historyItem.log.username} ${message}\\n\\n${historyItem.components.join('\\n')}`;\n }\n const items = Object.keys(history).map((uuid) => {\n const historyItem = history[uuid];\n const date = new Date(parseInt(historyItem.log.date)).toLocaleString();\n const message = historyItem.log.message;\n return `${uuid} ${date} ${historyItem.log.username} ${message}`;\n });\n return items.join('\\n');\n }\n}\n\nexport class LaneEjectCmd implements Command {\n name = 'eject <component-pattern>';\n description = `delete a component from the lane and install it as a package from main`;\n extendedDescription = `NOTE: unlike \"bit eject\" on main, this command doesn't only remove the component from the\nworkspace, but also mark it as deleted from the lane, so it won't be merged later on.`;\n alias = '';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n options = [] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([pattern]: [string]) {\n const results = await this.lanes.eject(pattern);\n const title = chalk.green('successfully ejected the following components');\n const body = results.map((r) => r.toString()).join('\\n');\n return `${title}\\n${body}`;\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n extendedDescription = 'NOTE: available only before the lane is exported to the remote';\n alias = '';\n options = [\n [\n 'l',\n 'lane-name <lane-name>',\n 'the name of the lane to change its remote scope. if not specified, the current lane is used',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([remoteScope]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { remoteScopeBefore, localName } = await this.lanes.changeScope(remoteScope, laneName);\n return `the remote-scope of ${chalk.bold(localName)} has been changed from ${chalk.bold(\n remoteScopeBefore\n )} to ${chalk.bold(remoteScope)}`;\n }\n}\n\nexport class LaneRenameCmd implements Command {\n name = 'rename <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally`;\n extendedDescription = 'the remote will be updated after the next \"bit export\" command';\n alias = '';\n options = [\n ['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used'],\n ] as CommandOptions;\n loader = true;\n constructor(private lanes: LanesMain) {}\n\n async report([newName]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { currentName } = await this.lanes.rename(newName, laneName);\n return `the lane ${chalk.bold(currentName)}'s name has been changed to ${chalk.bold(newName)}.`;\n }\n}\n\nexport class LaneRemoveCmd implements Command {\n name = 'remove <lanes...>';\n arguments = [{ name: 'lanes...', description: 'A list of lane names, separated by spaces' }];\n description = `remove or delete lanes`;\n group = 'collaborate';\n alias = '';\n options = [\n [\n 'r',\n 'remote',\n 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required',\n ],\n ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'],\n ['s', 'silent', 'skip confirmation'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [names]: [string[]],\n {\n remote = false,\n force = false,\n silent = false,\n }: {\n remote: boolean;\n force: boolean;\n silent: boolean;\n }\n ): Promise<string> {\n if (!silent) {\n const removePromptResult = await approveOperation();\n // @ts-ignore\n if (!yn(removePromptResult.shouldProceed)) {\n throw new BitError('the operation has been cancelled');\n }\n }\n const laneResults = await this.lanes.removeLanes(names, { remote, force });\n return chalk.green(`successfully removed the following lane(s): ${chalk.bold(laneResults.join(', '))}`);\n }\n}\n\nexport type RemoveCompsOpts = { workspaceOnly?: boolean; updateMain?: boolean };\n\nexport class LaneRemoveCompCmd implements Command {\n name = 'remove-comp <component-pattern>';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = `DEPRECATED. remove components when on a lane`;\n group = 'collaborate';\n alias = 'rc';\n options = [\n [\n '',\n 'workspace-only',\n 'do not mark the components as removed from the lane. instead, remove them from the workspace only',\n ],\n [\n '',\n 'update-main',\n 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private workspace: Workspace, private lanes: LanesMain) {}\n\n async report(): Promise<string> {\n throw new BitError(`bit lane remove-comp has been removed. please use \"bit remove\" or \"bit delete\" instead`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace and switch to that lane`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty',\n ],\n ] as CommandOptions;\n loader = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false, pattern }: { skipDependencyInstallation: boolean; pattern?: string }\n ): Promise<string> {\n return this.switchCmd.report([lane], { skipDependencyInstallation, pattern });\n }\n}\n\nexport class LaneFetchCmd implements Command {\n name = 'fetch [lane-id]';\n description = `fetch component objects from lanes. if no lane-id is provided, it fetches from the current lane`;\n extendedDescription = `note, it does not save the remote lanes objects locally, only the refs`;\n alias = '';\n options = [['a', 'all', 'fetch all remote lanes']] as CommandOptions;\n loader = true;\n\n constructor(private fetchCmd: FetchCmd, private lanes: LanesMain) {}\n\n async report([laneId]: [string], { all }: { all?: boolean }): Promise<string> {\n if (all) return this.fetchCmd.report([[]], { lanes: true });\n const getLaneIdStr = () => {\n if (laneId) return laneId;\n const currentLane = this.lanes.getCurrentLaneId();\n if (!currentLane || currentLane.isDefault())\n throw new BitError('you are not checked out to any lane. please specify a lane-id to fetch or use --all flag');\n return currentLane.toString();\n };\n const lane = getLaneIdStr();\n return this.fetchCmd.report([[lane]], { lanes: true });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [sub-command]';\n description = 'manage lanes - if no sub-command is used, runs \"bit lane list\"';\n alias = 'l';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in json format'],\n ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n group = 'collaborate';\n remoteOp = true;\n skipWorkspace = true;\n helpUrl = 'reference/components/lanes';\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n return new LaneListCmd(this.lanes, this.workspace, this.scope).report([name], laneOptions);\n }\n}\n\nexport class LaneRemoveReadmeCmd implements Command {\n name = 'remove-readme [laneName]';\n description = 'EXPERIMENTAL. remove lane readme component';\n options = [] as CommandOptions;\n loader = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const { result, message } = await this.lanes.removeLaneReadme(laneName);\n\n if (result) {\n return chalk.green(\n `the readme component has been successfully removed from the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n }\n\n return chalk.red(`${message}\\n`);\n }\n}\n\nexport class LaneAddReadmeCmd implements Command {\n name = 'add-readme <component-name> [lane-name]';\n description = 'EXPERIMENTAL. sets an existing component as the readme of a lane';\n arguments = [\n { name: 'component-id', description: \"the component name or id of the component to use as the lane's readme\" },\n { name: 'lane-name', description: 'the lane to attach the readme to (defaults to the current lane)' },\n ];\n options = [] as CommandOptions;\n loader = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([componentId, laneName]: [string, string]): Promise<string> {\n const { result, message } = await this.lanes.addLaneReadme(componentId, laneName);\n\n if (result)\n return chalk.green(\n `the component ${componentId} has been successfully added as the readme component for the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n\n return chalk.red(\n `${message || ''}\\nthe component ${componentId} could not be added as a readme component for the lane ${\n laneName || this.lanes.getCurrentLaneName()\n }`\n );\n }\n}\n\nfunction outputComponents(components: LaneData['components']): string {\n const componentsTitle = `\\t${chalk.bold(`components (${components.length})`)}\\n`;\n const componentsStr = components.map((c) => `\\t ${c.id.toString()} - ${c.head}`).join('\\n');\n return componentsTitle + componentsStr;\n}\n\nfunction outputReadmeComponent(component: LaneData['readmeComponent']): string {\n if (!component) return '';\n return `\\n\\t${`${chalk.yellow('readme component')}\\n\\t ${component.id} - ${\n component.head ||\n `(unsnapped)\\n\\t(\"use bit snap ${component.id.fullName}\" to snap the readme component on the lane before exporting)`\n }`}\\n`;\n}\n"],"mappings":"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","ignoreList":[]}
@@ -23,6 +23,7 @@ import { CheckoutMain } from '@teambit/checkout';
23
23
  import { ChangeType } from '@teambit/lanes.entities.lane-diff';
24
24
  import ComponentsList, { DivergeDataPerId } from '@teambit/legacy/dist/consumer/component/components-list';
25
25
  import { LaneCheckoutOpts } from './lane.cmd';
26
+ import { InstallMain } from '@teambit/install';
26
27
  export { Lane };
27
28
  export type SnapsDistanceObj = {
28
29
  onSource: string[];
@@ -90,7 +91,8 @@ export declare class LanesMain {
90
91
  readonly componentWriter: ComponentWriterMain;
91
92
  private remove;
92
93
  readonly checkout: CheckoutMain;
93
- constructor(workspace: Workspace | undefined, scope: ScopeMain, merging: MergingMain, componentAspect: ComponentMain, logger: Logger, importer: ImporterMain, exporter: ExportMain, componentCompare: ComponentCompareMain, componentWriter: ComponentWriterMain, remove: RemoveMain, checkout: CheckoutMain);
94
+ private install;
95
+ constructor(workspace: Workspace | undefined, scope: ScopeMain, merging: MergingMain, componentAspect: ComponentMain, logger: Logger, importer: ImporterMain, exporter: ExportMain, componentCompare: ComponentCompareMain, componentWriter: ComponentWriterMain, remove: RemoveMain, checkout: CheckoutMain, install: InstallMain);
94
96
  /**
95
97
  * return the lane data without the deleted components.
96
98
  * the deleted components are filtered out in legacyScope.lanes.getLanesData()
@@ -138,6 +140,7 @@ export declare class LanesMain {
138
140
  }>;
139
141
  exportLane(lane: Lane): Promise<void>;
140
142
  importLaneObject(laneId: LaneId, persistIfNotExists?: boolean, includeLaneHistory?: boolean): Promise<Lane>;
143
+ eject(pattern: string): Promise<ComponentID[]>;
141
144
  /**
142
145
  * get the head hash (snap) of main. return undefined if the component exists only on a lane and was never merged to main
143
146
  */
@@ -205,7 +208,7 @@ export declare class LanesMain {
205
208
  static slots: never[];
206
209
  static dependencies: import("@teambit/harmony").Aspect[];
207
210
  static runtime: import("@teambit/harmony").RuntimeDefinition;
208
- static provider([cli, scope, workspace, graphql, merging, component, loggerMain, importer, exporter, express, componentCompare, componentWriter, remove, checkout,]: [
211
+ static provider([cli, scope, workspace, graphql, merging, component, loggerMain, importer, exporter, express, componentCompare, componentWriter, remove, checkout, install,]: [
209
212
  CLIMain,
210
213
  ScopeMain,
211
214
  Workspace,
@@ -219,7 +222,8 @@ export declare class LanesMain {
219
222
  ComponentCompareMain,
220
223
  ComponentWriterMain,
221
224
  RemoveMain,
222
- CheckoutMain
225
+ CheckoutMain,
226
+ InstallMain
223
227
  ]): Promise<LanesMain>;
224
228
  }
225
229
  export default LanesMain;
@@ -297,6 +297,13 @@ function _lanesRestore() {
297
297
  };
298
298
  return data;
299
299
  }
300
+ function _install() {
301
+ const data = _interopRequireDefault(require("@teambit/install"));
302
+ _install = function () {
303
+ return data;
304
+ };
305
+ return data;
306
+ }
300
307
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
301
308
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
302
309
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
@@ -304,7 +311,7 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
304
311
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
305
312
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
306
313
  class LanesMain {
307
- constructor(workspace, scope, merging, componentAspect, logger, importer, exporter, componentCompare, componentWriter, remove, checkout) {
314
+ constructor(workspace, scope, merging, componentAspect, logger, importer, exporter, componentCompare, componentWriter, remove, checkout, install) {
308
315
  this.workspace = workspace;
309
316
  this.scope = scope;
310
317
  this.merging = merging;
@@ -316,6 +323,7 @@ class LanesMain {
316
323
  this.componentWriter = componentWriter;
317
324
  this.remove = remove;
318
325
  this.checkout = checkout;
326
+ this.install = install;
319
327
  }
320
328
 
321
329
  /**
@@ -624,6 +632,15 @@ please create a new lane instead, which will include all components of this lane
624
632
  async importLaneObject(laneId, persistIfNotExists = true, includeLaneHistory = false) {
625
633
  return this.importer.importLaneObject(laneId, persistIfNotExists, includeLaneHistory);
626
634
  }
635
+ async eject(pattern) {
636
+ if (!this.workspace) {
637
+ throw new (_bitError().BitError)(`unable to eject a component outside of Bit workspace`);
638
+ }
639
+ const deletedComps = await this.remove.deleteComps(pattern);
640
+ const packages = deletedComps.map(c => c.getPackageName());
641
+ await this.install.install(packages);
642
+ return deletedComps.map(c => c.id);
643
+ }
627
644
 
628
645
  /**
629
646
  * get the head hash (snap) of main. return undefined if the component exists only on a lane and was never merged to main
@@ -1121,13 +1138,13 @@ please create a new lane instead, which will include all components of this lane
1121
1138
  get restoreRoutePath() {
1122
1139
  return '/lanes/restore';
1123
1140
  }
1124
- static async provider([cli, scope, workspace, graphql, merging, component, loggerMain, importer, exporter, express, componentCompare, componentWriter, remove, checkout]) {
1141
+ static async provider([cli, scope, workspace, graphql, merging, component, loggerMain, importer, exporter, express, componentCompare, componentWriter, remove, checkout, install]) {
1125
1142
  const logger = loggerMain.createLogger(_lanes().LanesAspect.id);
1126
- const lanesMain = new LanesMain(workspace, scope, merging, component, logger, importer, exporter, componentCompare, componentWriter, remove, checkout);
1143
+ const lanesMain = new LanesMain(workspace, scope, merging, component, logger, importer, exporter, componentCompare, componentWriter, remove, checkout, install);
1127
1144
  const switchCmd = new (_switch().SwitchCmd)(lanesMain);
1128
1145
  const fetchCmd = new (_importer().FetchCmd)(importer);
1129
1146
  const laneCmd = new (_lane().LaneCmd)(lanesMain, workspace, scope);
1130
- laneCmd.commands = [new (_lane().LaneListCmd)(lanesMain, workspace, scope), switchCmd, new (_lane().LaneShowCmd)(lanesMain, workspace, scope), new (_lane().LaneCreateCmd)(lanesMain), new (_lane().LaneRemoveCmd)(lanesMain), new (_lane().LaneChangeScopeCmd)(lanesMain), new (_lane().LaneAliasCmd)(lanesMain), new (_lane().LaneRenameCmd)(lanesMain), new (_lanesModules().LaneDiffCmd)(workspace, scope, componentCompare), new (_lane().LaneAddReadmeCmd)(lanesMain), new (_lane().LaneRemoveReadmeCmd)(lanesMain), new (_lane().LaneImportCmd)(switchCmd), new (_lane().LaneRemoveCompCmd)(workspace, lanesMain), new (_lane().LaneFetchCmd)(fetchCmd, lanesMain)];
1147
+ laneCmd.commands = [new (_lane().LaneListCmd)(lanesMain, workspace, scope), switchCmd, new (_lane().LaneShowCmd)(lanesMain, workspace, scope), new (_lane().LaneCreateCmd)(lanesMain), new (_lane().LaneRemoveCmd)(lanesMain), new (_lane().LaneChangeScopeCmd)(lanesMain), new (_lane().LaneAliasCmd)(lanesMain), new (_lane().LaneRenameCmd)(lanesMain), new (_lanesModules().LaneDiffCmd)(workspace, scope, componentCompare), new (_lane().LaneAddReadmeCmd)(lanesMain), new (_lane().LaneRemoveReadmeCmd)(lanesMain), new (_lane().LaneImportCmd)(switchCmd), new (_lane().LaneRemoveCompCmd)(workspace, lanesMain), new (_lane().LaneFetchCmd)(fetchCmd, lanesMain), new (_lane().LaneEjectCmd)(lanesMain)];
1131
1148
  if ((0, _featureToggle().isFeatureEnabled)(_featureToggle().SUPPORT_LANE_HISTORY)) {
1132
1149
  laneCmd.commands.push(new (_lane().LaneHistoryCmd)(lanesMain));
1133
1150
  laneCmd.commands.push(new (_lane().LaneCheckoutCmd)(lanesMain));
@@ -1144,7 +1161,7 @@ please create a new lane instead, which will include all components of this lane
1144
1161
  }
1145
1162
  exports.LanesMain = LanesMain;
1146
1163
  _defineProperty(LanesMain, "slots", []);
1147
- _defineProperty(LanesMain, "dependencies", [_cli().CLIAspect, _scope().ScopeAspect, _workspace().WorkspaceAspect, _graphql().GraphqlAspect, _merging().MergingAspect, _component().ComponentAspect, _logger().LoggerAspect, _importer().ImporterAspect, _export().ExportAspect, _express().ExpressAspect, _componentCompare().ComponentCompareAspect, _componentWriter().ComponentWriterAspect, _remove().RemoveAspect, _checkout().CheckoutAspect]);
1164
+ _defineProperty(LanesMain, "dependencies", [_cli().CLIAspect, _scope().ScopeAspect, _workspace().WorkspaceAspect, _graphql().GraphqlAspect, _merging().MergingAspect, _component().ComponentAspect, _logger().LoggerAspect, _importer().ImporterAspect, _export().ExportAspect, _express().ExpressAspect, _componentCompare().ComponentCompareAspect, _componentWriter().ComponentWriterAspect, _remove().RemoveAspect, _checkout().CheckoutAspect, _install().default]);
1148
1165
  _defineProperty(LanesMain, "runtime", _cli().MainRuntime);
1149
1166
  _lanes().LanesAspect.addRuntime(LanesMain);
1150
1167
  var _default = exports.default = LanesMain;