@teambit/snapping 1.0.243 → 1.0.245

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.
@@ -10,7 +10,7 @@ export type untagResult = {
10
10
  /**
11
11
  * If head is false, remove all local versions.
12
12
  */
13
- export declare function removeLocalVersion(scope: Scope, id: ComponentID, lane: Lane | null, head?: boolean, force?: boolean): Promise<untagResult>;
14
- export declare function removeLocalVersionsForAllComponents(consumer: Consumer, lane: Lane | null, head?: boolean): Promise<untagResult[]>;
15
- export declare function removeLocalVersionsForMultipleComponents(componentsToUntag: ModelComponent[], lane: Lane | null, head?: boolean, force: boolean, scope: Scope): Promise<untagResult[]>;
13
+ export declare function removeLocalVersion(scope: Scope, id: ComponentID, lane?: Lane, head?: boolean, force?: boolean): Promise<untagResult>;
14
+ export declare function removeLocalVersionsForAllComponents(consumer: Consumer, lane?: Lane, head?: boolean): Promise<untagResult[]>;
15
+ export declare function removeLocalVersionsForMultipleComponents(componentsToUntag: ModelComponent[], lane?: Lane, head?: boolean, force: boolean, scope: Scope): Promise<untagResult[]>;
16
16
  export declare function getComponentsWithOptionToUntag(consumer: Consumer): Promise<ModelComponent[]>;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","_componentsList","_interopRequireDefault","_logger","obj","__esModule","default","removeLocalVersion","scope","id","lane","head","force","component","getModelComponent","idStr","toString","localVersions","getLocalHashes","objects","length","BitError","headRef","getHeadRegardlessOfLane","Error","find","v","isEqual","versionsToRemove","versionsToRemoveStr","switchHashesWithTagsIfExist","dependencyGraph","getDependencyGraph","forEach","versionToRemove","idWithVersion","toComponentId","changeVersion","dependents","getImmediateDependentsPerId","join","sources","removeComponentVersions","versions","removeLocalVersionsForAllComponents","consumer","componentsToUntag","getComponentsWithOptionToUntag","removeLocalVersionsForMultipleComponents","candidateComponentsIds","map","bitId","getTagOfRefIfExists","candidateComponentsIdsStr","dependentsNotCandidates","filter","dependent","includes","version","logger","debug","Promise","all","componentList","ComponentsList","laneObj","getCurrentLaneObject","components","listExportPendingComponents"],"sources":["reset-component.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { ComponentID } from '@teambit/component-id';\nimport { Scope } from '@teambit/legacy/dist/scope';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport { Lane, ModelComponent } from '@teambit/legacy/dist/scope/models';\n\nexport type untagResult = { id: ComponentID; versions: string[]; component?: ModelComponent };\n\n/**\n * If head is false, remove all local versions.\n */\nexport async function removeLocalVersion(\n scope: Scope,\n id: ComponentID,\n lane: Lane | null,\n head?: boolean,\n force = false\n): Promise<untagResult> {\n const component: ModelComponent = await scope.getModelComponent(id);\n const idStr = id.toString();\n const localVersions = await component.getLocalHashes(scope.objects);\n if (!localVersions.length) throw new BitError(`unable to untag ${idStr}, the component is not staged`);\n const headRef = component.getHeadRegardlessOfLane();\n if (!headRef) {\n throw new Error(`unable to reset ${idStr}, it has not head`);\n }\n if (head && !localVersions.find((v) => v.isEqual(headRef))) {\n throw new Error(`unable to reset ${idStr}, the head ${headRef.toString()} is exported`);\n }\n const versionsToRemove = head ? [headRef] : localVersions;\n const versionsToRemoveStr = component.switchHashesWithTagsIfExist(versionsToRemove);\n\n if (!force) {\n const dependencyGraph = await scope.getDependencyGraph();\n\n versionsToRemoveStr.forEach((versionToRemove) => {\n const idWithVersion = component.toComponentId().changeVersion(versionToRemove);\n const dependents = dependencyGraph.getImmediateDependentsPerId(idWithVersion);\n if (dependents.length) {\n throw new BitError(\n `unable to reset ${idStr}, the version ${versionToRemove} has the following dependent(s) ${dependents.join(\n ', '\n )}`\n );\n }\n });\n }\n\n await scope.sources.removeComponentVersions(component, versionsToRemove, versionsToRemoveStr, lane, head);\n\n return { id, versions: versionsToRemoveStr, component };\n}\n\nexport async function removeLocalVersionsForAllComponents(\n consumer: Consumer,\n lane: Lane | null,\n head?: boolean\n): Promise<untagResult[]> {\n const componentsToUntag = await getComponentsWithOptionToUntag(consumer);\n const force = true; // when removing local versions from all components, no need to check if the component is used as a dependency\n return removeLocalVersionsForMultipleComponents(componentsToUntag, lane, head, force, consumer.scope);\n}\n\nexport async function removeLocalVersionsForMultipleComponents(\n componentsToUntag: ModelComponent[],\n lane: Lane | null,\n head?: boolean,\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n force: boolean,\n scope: Scope\n) {\n if (!componentsToUntag.length) {\n throw new BitError(`no components found to reset on your workspace`);\n }\n // if only head is removed, there is risk of deleting dependencies version without their dependents.\n if (!force && head) {\n const dependencyGraph = await scope.getDependencyGraph();\n const candidateComponentsIds = componentsToUntag.map((component) => {\n const bitId = component.toComponentId();\n const headRef = component.getHeadRegardlessOfLane();\n if (!headRef)\n throw new Error(`component ${bitId.toString()} does not have head. it should not be a candidate for reset`);\n\n return bitId.changeVersion(component.getTagOfRefIfExists(headRef) || headRef.toString());\n });\n const candidateComponentsIdsStr = candidateComponentsIds.map((id) => id.toString());\n candidateComponentsIds.forEach((bitId: ComponentID) => {\n const dependents = dependencyGraph.getImmediateDependentsPerId(bitId);\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const dependentsNotCandidates = dependents.filter((dependent) => !candidateComponentsIdsStr.includes(dependent));\n if (dependentsNotCandidates.length) {\n throw new BitError( // $FlowFixMe\n `unable to untag ${bitId}, the version ${bitId.version} has the following dependent(s) ${dependents.join(\n ', '\n )}`\n );\n }\n });\n }\n logger.debug(`found ${componentsToUntag.length} components to untag`);\n return Promise.all(\n componentsToUntag.map((component) => removeLocalVersion(scope, component.toComponentId(), lane, head, force))\n );\n}\n\nexport async function getComponentsWithOptionToUntag(consumer: Consumer): Promise<ModelComponent[]> {\n const componentList = new ComponentsList(consumer);\n const laneObj = await consumer.getCurrentLaneObject();\n const components: ModelComponent[] = await componentList.listExportPendingComponents(laneObj);\n\n return components;\n}\n"],"mappings":";;;;;;;;;AAAA,SAAAA,UAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,SAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAIA,SAAAE,gBAAA;EAAA,MAAAF,IAAA,GAAAG,sBAAA,CAAAF,OAAA;EAAAC,eAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,QAAA;EAAA,MAAAJ,IAAA,GAAAG,sBAAA,CAAAF,OAAA;EAAAG,OAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAwD,SAAAG,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAKxD;AACA;AACA;AACO,eAAeG,kBAAkBA,CACtCC,KAAY,EACZC,EAAe,EACfC,IAAiB,EACjBC,IAAc,EACdC,KAAK,GAAG,KAAK,EACS;EACtB,MAAMC,SAAyB,GAAG,MAAML,KAAK,CAACM,iBAAiB,CAACL,EAAE,CAAC;EACnE,MAAMM,KAAK,GAAGN,EAAE,CAACO,QAAQ,CAAC,CAAC;EAC3B,MAAMC,aAAa,GAAG,MAAMJ,SAAS,CAACK,cAAc,CAACV,KAAK,CAACW,OAAO,CAAC;EACnE,IAAI,CAACF,aAAa,CAACG,MAAM,EAAE,MAAM,KAAIC,oBAAQ,EAAE,mBAAkBN,KAAM,+BAA8B,CAAC;EACtG,MAAMO,OAAO,GAAGT,SAAS,CAACU,uBAAuB,CAAC,CAAC;EACnD,IAAI,CAACD,OAAO,EAAE;IACZ,MAAM,IAAIE,KAAK,CAAE,mBAAkBT,KAAM,mBAAkB,CAAC;EAC9D;EACA,IAAIJ,IAAI,IAAI,CAACM,aAAa,CAACQ,IAAI,CAAEC,CAAC,IAAKA,CAAC,CAACC,OAAO,CAACL,OAAO,CAAC,CAAC,EAAE;IAC1D,MAAM,IAAIE,KAAK,CAAE,mBAAkBT,KAAM,cAAaO,OAAO,CAACN,QAAQ,CAAC,CAAE,cAAa,CAAC;EACzF;EACA,MAAMY,gBAAgB,GAAGjB,IAAI,GAAG,CAACW,OAAO,CAAC,GAAGL,aAAa;EACzD,MAAMY,mBAAmB,GAAGhB,SAAS,CAACiB,2BAA2B,CAACF,gBAAgB,CAAC;EAEnF,IAAI,CAAChB,KAAK,EAAE;IACV,MAAMmB,eAAe,GAAG,MAAMvB,KAAK,CAACwB,kBAAkB,CAAC,CAAC;IAExDH,mBAAmB,CAACI,OAAO,CAAEC,eAAe,IAAK;MAC/C,MAAMC,aAAa,GAAGtB,SAAS,CAACuB,aAAa,CAAC,CAAC,CAACC,aAAa,CAACH,eAAe,CAAC;MAC9E,MAAMI,UAAU,GAAGP,eAAe,CAACQ,2BAA2B,CAACJ,aAAa,CAAC;MAC7E,IAAIG,UAAU,CAAClB,MAAM,EAAE;QACrB,MAAM,KAAIC,oBAAQ,EACf,mBAAkBN,KAAM,iBAAgBmB,eAAgB,mCAAkCI,UAAU,CAACE,IAAI,CACxG,IACF,CAAE,EACJ,CAAC;MACH;IACF,CAAC,CAAC;EACJ;EAEA,MAAMhC,KAAK,CAACiC,OAAO,CAACC,uBAAuB,CAAC7B,SAAS,EAAEe,gBAAgB,EAAEC,mBAAmB,EAAEnB,IAAI,EAAEC,IAAI,CAAC;EAEzG,OAAO;IAAEF,EAAE;IAAEkC,QAAQ,EAAEd,mBAAmB;IAAEhB;EAAU,CAAC;AACzD;AAEO,eAAe+B,mCAAmCA,CACvDC,QAAkB,EAClBnC,IAAiB,EACjBC,IAAc,EACU;EACxB,MAAMmC,iBAAiB,GAAG,MAAMC,8BAA8B,CAACF,QAAQ,CAAC;EACxE,MAAMjC,KAAK,GAAG,IAAI,CAAC,CAAC;EACpB,OAAOoC,wCAAwC,CAACF,iBAAiB,EAAEpC,IAAI,EAAEC,IAAI,EAAEC,KAAK,EAAEiC,QAAQ,CAACrC,KAAK,CAAC;AACvG;AAEO,eAAewC,wCAAwCA,CAC5DF,iBAAmC,EACnCpC,IAAiB,EACjBC,IAAc;AACd;AACAC,KAAc,EACdJ,KAAY,EACZ;EACA,IAAI,CAACsC,iBAAiB,CAAC1B,MAAM,EAAE;IAC7B,MAAM,KAAIC,oBAAQ,EAAE,gDAA+C,CAAC;EACtE;EACA;EACA,IAAI,CAACT,KAAK,IAAID,IAAI,EAAE;IAClB,MAAMoB,eAAe,GAAG,MAAMvB,KAAK,CAACwB,kBAAkB,CAAC,CAAC;IACxD,MAAMiB,sBAAsB,GAAGH,iBAAiB,CAACI,GAAG,CAAErC,SAAS,IAAK;MAClE,MAAMsC,KAAK,GAAGtC,SAAS,CAACuB,aAAa,CAAC,CAAC;MACvC,MAAMd,OAAO,GAAGT,SAAS,CAACU,uBAAuB,CAAC,CAAC;MACnD,IAAI,CAACD,OAAO,EACV,MAAM,IAAIE,KAAK,CAAE,aAAY2B,KAAK,CAACnC,QAAQ,CAAC,CAAE,6DAA4D,CAAC;MAE7G,OAAOmC,KAAK,CAACd,aAAa,CAACxB,SAAS,CAACuC,mBAAmB,CAAC9B,OAAO,CAAC,IAAIA,OAAO,CAACN,QAAQ,CAAC,CAAC,CAAC;IAC1F,CAAC,CAAC;IACF,MAAMqC,yBAAyB,GAAGJ,sBAAsB,CAACC,GAAG,CAAEzC,EAAE,IAAKA,EAAE,CAACO,QAAQ,CAAC,CAAC,CAAC;IACnFiC,sBAAsB,CAAChB,OAAO,CAAEkB,KAAkB,IAAK;MACrD,MAAMb,UAAU,GAAGP,eAAe,CAACQ,2BAA2B,CAACY,KAAK,CAAC;MACrE;MACA,MAAMG,uBAAuB,GAAGhB,UAAU,CAACiB,MAAM,CAAEC,SAAS,IAAK,CAACH,yBAAyB,CAACI,QAAQ,CAACD,SAAS,CAAC,CAAC;MAChH,IAAIF,uBAAuB,CAAClC,MAAM,EAAE;QAClC,MAAM,KAAIC,oBAAQ;QAAE;QACjB,mBAAkB8B,KAAM,iBAAgBA,KAAK,CAACO,OAAQ,mCAAkCpB,UAAU,CAACE,IAAI,CACtG,IACF,CAAE,EACJ,CAAC;MACH;IACF,CAAC,CAAC;EACJ;EACAmB,iBAAM,CAACC,KAAK,CAAE,SAAQd,iBAAiB,CAAC1B,MAAO,sBAAqB,CAAC;EACrE,OAAOyC,OAAO,CAACC,GAAG,CAChBhB,iBAAiB,CAACI,GAAG,CAAErC,SAAS,IAAKN,kBAAkB,CAACC,KAAK,EAAEK,SAAS,CAACuB,aAAa,CAAC,CAAC,EAAE1B,IAAI,EAAEC,IAAI,EAAEC,KAAK,CAAC,CAC9G,CAAC;AACH;AAEO,eAAemC,8BAA8BA,CAACF,QAAkB,EAA6B;EAClG,MAAMkB,aAAa,GAAG,KAAIC,yBAAc,EAACnB,QAAQ,CAAC;EAClD,MAAMoB,OAAO,GAAG,MAAMpB,QAAQ,CAACqB,oBAAoB,CAAC,CAAC;EACrD,MAAMC,UAA4B,GAAG,MAAMJ,aAAa,CAACK,2BAA2B,CAACH,OAAO,CAAC;EAE7F,OAAOE,UAAU;AACnB","ignoreList":[]}
1
+ {"version":3,"names":["_bitError","data","require","_componentsList","_interopRequireDefault","_logger","obj","__esModule","default","removeLocalVersion","scope","id","lane","head","force","component","getModelComponent","idStr","toString","localVersions","getLocalHashes","objects","length","BitError","headRef","getHeadRegardlessOfLane","Error","find","v","isEqual","versionsToRemove","versionsToRemoveStr","switchHashesWithTagsIfExist","dependencyGraph","getDependencyGraph","forEach","versionToRemove","idWithVersion","toComponentId","changeVersion","dependents","getImmediateDependentsPerId","join","sources","removeComponentVersions","versions","removeLocalVersionsForAllComponents","consumer","componentsToUntag","getComponentsWithOptionToUntag","removeLocalVersionsForMultipleComponents","candidateComponentsIds","map","bitId","getTagOfRefIfExists","candidateComponentsIdsStr","dependentsNotCandidates","filter","dependent","includes","version","logger","debug","Promise","all","componentList","ComponentsList","laneObj","getCurrentLaneObject","components","listExportPendingComponents"],"sources":["reset-component.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { ComponentID } from '@teambit/component-id';\nimport { Scope } from '@teambit/legacy/dist/scope';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport { Lane, ModelComponent } from '@teambit/legacy/dist/scope/models';\n\nexport type untagResult = { id: ComponentID; versions: string[]; component?: ModelComponent };\n\n/**\n * If head is false, remove all local versions.\n */\nexport async function removeLocalVersion(\n scope: Scope,\n id: ComponentID,\n lane?: Lane,\n head?: boolean,\n force = false\n): Promise<untagResult> {\n const component: ModelComponent = await scope.getModelComponent(id);\n const idStr = id.toString();\n const localVersions = await component.getLocalHashes(scope.objects);\n if (!localVersions.length) throw new BitError(`unable to untag ${idStr}, the component is not staged`);\n const headRef = component.getHeadRegardlessOfLane();\n if (!headRef) {\n throw new Error(`unable to reset ${idStr}, it has not head`);\n }\n if (head && !localVersions.find((v) => v.isEqual(headRef))) {\n throw new Error(`unable to reset ${idStr}, the head ${headRef.toString()} is exported`);\n }\n const versionsToRemove = head ? [headRef] : localVersions;\n const versionsToRemoveStr = component.switchHashesWithTagsIfExist(versionsToRemove);\n\n if (!force) {\n const dependencyGraph = await scope.getDependencyGraph();\n\n versionsToRemoveStr.forEach((versionToRemove) => {\n const idWithVersion = component.toComponentId().changeVersion(versionToRemove);\n const dependents = dependencyGraph.getImmediateDependentsPerId(idWithVersion);\n if (dependents.length) {\n throw new BitError(\n `unable to reset ${idStr}, the version ${versionToRemove} has the following dependent(s) ${dependents.join(\n ', '\n )}`\n );\n }\n });\n }\n\n await scope.sources.removeComponentVersions(component, versionsToRemove, versionsToRemoveStr, lane, head);\n\n return { id, versions: versionsToRemoveStr, component };\n}\n\nexport async function removeLocalVersionsForAllComponents(\n consumer: Consumer,\n lane?: Lane,\n head?: boolean\n): Promise<untagResult[]> {\n const componentsToUntag = await getComponentsWithOptionToUntag(consumer);\n const force = true; // when removing local versions from all components, no need to check if the component is used as a dependency\n return removeLocalVersionsForMultipleComponents(componentsToUntag, lane, head, force, consumer.scope);\n}\n\nexport async function removeLocalVersionsForMultipleComponents(\n componentsToUntag: ModelComponent[],\n lane?: Lane,\n head?: boolean,\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n force: boolean,\n scope: Scope\n) {\n if (!componentsToUntag.length) {\n throw new BitError(`no components found to reset on your workspace`);\n }\n // if only head is removed, there is risk of deleting dependencies version without their dependents.\n if (!force && head) {\n const dependencyGraph = await scope.getDependencyGraph();\n const candidateComponentsIds = componentsToUntag.map((component) => {\n const bitId = component.toComponentId();\n const headRef = component.getHeadRegardlessOfLane();\n if (!headRef)\n throw new Error(`component ${bitId.toString()} does not have head. it should not be a candidate for reset`);\n\n return bitId.changeVersion(component.getTagOfRefIfExists(headRef) || headRef.toString());\n });\n const candidateComponentsIdsStr = candidateComponentsIds.map((id) => id.toString());\n candidateComponentsIds.forEach((bitId: ComponentID) => {\n const dependents = dependencyGraph.getImmediateDependentsPerId(bitId);\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const dependentsNotCandidates = dependents.filter((dependent) => !candidateComponentsIdsStr.includes(dependent));\n if (dependentsNotCandidates.length) {\n throw new BitError( // $FlowFixMe\n `unable to untag ${bitId}, the version ${bitId.version} has the following dependent(s) ${dependents.join(\n ', '\n )}`\n );\n }\n });\n }\n logger.debug(`found ${componentsToUntag.length} components to untag`);\n return Promise.all(\n componentsToUntag.map((component) => removeLocalVersion(scope, component.toComponentId(), lane, head, force))\n );\n}\n\nexport async function getComponentsWithOptionToUntag(consumer: Consumer): Promise<ModelComponent[]> {\n const componentList = new ComponentsList(consumer);\n const laneObj = await consumer.getCurrentLaneObject();\n const components: ModelComponent[] = await componentList.listExportPendingComponents(laneObj);\n\n return components;\n}\n"],"mappings":"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","ignoreList":[]}
@@ -146,14 +146,14 @@ export declare class SnappingMain {
146
146
  _getPublishedPackages(components: ConsumerComponent[]): string[];
147
147
  _addCompToObjects({ source, lane, shouldValidateVersion, updateDependentsOnLane, }: {
148
148
  source: ConsumerComponent;
149
- lane: Lane | null;
149
+ lane?: Lane;
150
150
  shouldValidateVersion?: boolean;
151
151
  updateDependentsOnLane?: boolean;
152
152
  }): Promise<{
153
153
  component: ModelComponent;
154
154
  version: Version;
155
155
  }>;
156
- _addCompFromScopeToObjects(source: ConsumerComponent, lane: Lane | null, updateDependentsOnLane?: boolean): Promise<{
156
+ _addCompFromScopeToObjects(source: ConsumerComponent, lane?: Lane, updateDependentsOnLane?: boolean): Promise<{
157
157
  component: ModelComponent;
158
158
  version: Version;
159
159
  }>;
@@ -685,7 +685,7 @@ if you're willing to lose the history from the head to the specified version, us
685
685
  ids,
686
686
  idsWithFutureScope: ids,
687
687
  allVersions: false,
688
- laneObject: updatedLane || undefined,
688
+ laneObject: updatedLane,
689
689
  // no need other snaps. only the latest one. without this option, when snapping on lane from another-scope, it
690
690
  // may throw an error saying the previous snaps don't exist on the filesystem.
691
691
  // (see the e2e - "snap on a lane when the component is new to the lane and the scope")
@@ -881,13 +881,13 @@ in case you're unsure about the pattern syntax, use "bit pattern [--help]"`);
881
881
  };
882
882
  const lane = await getLane();
883
883
  if (rebuildDepsGraph) {
884
- const flattenedDependenciesGetter = new (_getFlattenedDependencies().FlattenedDependenciesGetter)(this.scope.legacyScope, components, lane || undefined);
884
+ const flattenedDependenciesGetter = new (_getFlattenedDependencies().FlattenedDependenciesGetter)(this.scope.legacyScope, components, lane);
885
885
  await flattenedDependenciesGetter.populateFlattenedDependencies();
886
886
  _loader().default.stop();
887
887
  await this._addFlattenedDepsGraphToComponents(components);
888
888
  return;
889
889
  }
890
- const flattenedEdgesGetter = new (_flattenedEdges().FlattenedEdgesGetter)(this.scope, components, this.logger, lane || undefined);
890
+ const flattenedEdgesGetter = new (_flattenedEdges().FlattenedEdgesGetter)(this.scope, components, this.logger, lane);
891
891
  await flattenedEdgesGetter.buildGraph();
892
892
  components.forEach(component => {
893
893
  flattenedEdgesGetter.populateFlattenedAndEdgesForComp(component);
@@ -898,7 +898,7 @@ in case you're unsure about the pattern syntax, use "bit pattern [--help]"`);
898
898
  const lane = await this.scope.legacyScope.getCurrentLaneObject();
899
899
  const allIds = _componentId().ComponentIdList.fromArray(components.map(c => c.id));
900
900
  const missingDeps = await (0, _pMapSeries().default)(components, async component => {
901
- return this.throwForDepsFromAnotherLaneForComp(component, allIds, lane || undefined);
901
+ return this.throwForDepsFromAnotherLaneForComp(component, allIds, lane);
902
902
  });
903
903
  const flattenedMissingDeps = _componentId().ComponentIdList.uniqFromArray(missingDeps.flat().map(id => id.changeVersion(undefined)));
904
904
  if (!flattenedMissingDeps.length) return;
@@ -908,11 +908,11 @@ in case you're unsure about the pattern syntax, use "bit pattern [--help]"`);
908
908
  cache: false,
909
909
  ignoreMissingHead: true,
910
910
  includeVersionHistory: true,
911
- lane: lane || undefined,
911
+ lane,
912
912
  reason: 'of latest with version-history to make sure there are no dependencies from another lane'
913
913
  });
914
914
  await (0, _pMapSeries().default)(components, async component => {
915
- await this.throwForDepsFromAnotherLaneForComp(component, allIds, lane || undefined, true);
915
+ await this.throwForDepsFromAnotherLaneForComp(component, allIds, lane, true);
916
916
  });
917
917
  }
918
918
  async throwForVariousIssues(components, ignoreIssues) {