@teambit/importer 0.0.393 → 0.0.394
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/import-components.d.ts +3 -1
- package/dist/import-components.js +7 -13
- package/dist/import-components.js.map +1 -1
- package/dist/importer.main.runtime.d.ts +12 -3
- package/dist/importer.main.runtime.js +60 -11
- package/dist/importer.main.runtime.js.map +1 -1
- package/dist/{preview-1674098968766.js → preview-1674271762484.js} +2 -2
- package/package-tar/teambit-importer-0.0.394.tgz +0 -0
- package/package.json +13 -10
- package/package-tar/teambit-importer-0.0.393.tgz +0 -0
|
@@ -10,6 +10,7 @@ import { MergeResultsThreeWay } from '@teambit/legacy/dist/consumer/versions-ops
|
|
|
10
10
|
import VersionDependencies from '@teambit/legacy/dist/scope/version-dependencies';
|
|
11
11
|
import { GraphMain } from '@teambit/graph';
|
|
12
12
|
import { Workspace } from '@teambit/workspace';
|
|
13
|
+
import { ComponentWriterMain } from '@teambit/component-writer';
|
|
13
14
|
export declare type ImportOptions = {
|
|
14
15
|
ids: string[];
|
|
15
16
|
verbose?: boolean;
|
|
@@ -60,6 +61,7 @@ export declare type ImportResult = {
|
|
|
60
61
|
export default class ImportComponents {
|
|
61
62
|
private workspace;
|
|
62
63
|
private graph;
|
|
64
|
+
private componentWriter;
|
|
63
65
|
options: ImportOptions;
|
|
64
66
|
consumer: Consumer;
|
|
65
67
|
scope: Scope;
|
|
@@ -68,7 +70,7 @@ export default class ImportComponents {
|
|
|
68
70
|
};
|
|
69
71
|
private laneObjects;
|
|
70
72
|
private divergeData;
|
|
71
|
-
constructor(workspace: Workspace, graph: GraphMain, options: ImportOptions);
|
|
73
|
+
constructor(workspace: Workspace, graph: GraphMain, componentWriter: ComponentWriterMain, options: ImportOptions);
|
|
72
74
|
importComponents(): Promise<ImportResult>;
|
|
73
75
|
importObjectsOnLane(): Promise<ImportResult>;
|
|
74
76
|
importSpecificComponents(): Promise<ImportResult>;
|
|
@@ -144,13 +144,6 @@ function _componentsPendingMerge() {
|
|
|
144
144
|
};
|
|
145
145
|
return data;
|
|
146
146
|
}
|
|
147
|
-
function _manyComponentsWriter() {
|
|
148
|
-
const data = _interopRequireDefault(require("@teambit/legacy/dist/consumer/component-ops/many-components-writer"));
|
|
149
|
-
_manyComponentsWriter = function () {
|
|
150
|
-
return data;
|
|
151
|
-
};
|
|
152
|
-
return data;
|
|
153
|
-
}
|
|
154
147
|
function _scopeComponentsImporter() {
|
|
155
148
|
const data = _interopRequireDefault(require("@teambit/legacy/dist/scope/component-ops/scope-components-importer"));
|
|
156
149
|
_scopeComponentsImporter = function () {
|
|
@@ -166,9 +159,10 @@ function _versionDependencies() {
|
|
|
166
159
|
return data;
|
|
167
160
|
}
|
|
168
161
|
class ImportComponents {
|
|
169
|
-
constructor(workspace, graph, options) {
|
|
162
|
+
constructor(workspace, graph, componentWriter, options) {
|
|
170
163
|
this.workspace = workspace;
|
|
171
164
|
this.graph = graph;
|
|
165
|
+
this.componentWriter = componentWriter;
|
|
172
166
|
this.options = options;
|
|
173
167
|
(0, _defineProperty2().default)(this, "consumer", void 0);
|
|
174
168
|
(0, _defineProperty2().default)(this, "scope", void 0);
|
|
@@ -453,8 +447,8 @@ bit import ${idsFromRemote.map(id => id.toStringWithoutVersion()).join(' ')}`);
|
|
|
453
447
|
};
|
|
454
448
|
}
|
|
455
449
|
getIdsToImportFromBitmap() {
|
|
456
|
-
const
|
|
457
|
-
return _bitId().BitIds.fromArray(
|
|
450
|
+
const allIds = this.consumer.bitMap.getAllBitIdsFromAllLanes();
|
|
451
|
+
return _bitId().BitIds.fromArray(allIds.filter(id => id.hasScope()));
|
|
458
452
|
}
|
|
459
453
|
async _getCurrentVersions(ids) {
|
|
460
454
|
const versionsP = ids.map(async id => {
|
|
@@ -679,7 +673,7 @@ bit import ${idsFromRemote.map(id => id.toStringWithoutVersion()).join(' ')}`);
|
|
|
679
673
|
return;
|
|
680
674
|
}
|
|
681
675
|
const componentsToWrite = await this.updateAllComponentsAccordingToMergeStrategy(componentsWithDependencies);
|
|
682
|
-
const
|
|
676
|
+
const manyComponentsWriterOpts = {
|
|
683
677
|
consumer: this.consumer,
|
|
684
678
|
componentsWithDependencies: componentsToWrite,
|
|
685
679
|
writeToPath: this.options.writeToPath,
|
|
@@ -687,8 +681,8 @@ bit import ${idsFromRemote.map(id => id.toStringWithoutVersion()).join(' ')}`);
|
|
|
687
681
|
installNpmPackages: this.options.installNpmPackages,
|
|
688
682
|
verbose: this.options.verbose,
|
|
689
683
|
override: this.options.override
|
|
690
|
-
}
|
|
691
|
-
await
|
|
684
|
+
};
|
|
685
|
+
await this.componentWriter.writeMany(manyComponentsWriterOpts);
|
|
692
686
|
}
|
|
693
687
|
}
|
|
694
688
|
exports.default = ImportComponents;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ImportComponents","constructor","workspace","graph","options","consumer","scope","laneObjects","lanes","importComponents","loader","start","BEFORE_IMPORT_ACTION","saveDependenciesAsComponents","config","_saveDependenciesAsComponents","ids","length","importObjectsOnLane","importSpecificComponents","importAccordingToBitMap","objectsOnly","Error","lane","undefined","bitIds","getBitIds","logger","debug","id","toString","beforeImportVersions","_getCurrentVersions","versionDependenciesArr","_importComponentsObjects","mainIdsLatest","BitIds","fromArray","toBitIds","map","m","changeVersion","ignoreMissingHead","mergeAllLanesResults","pMapSeries","laneObject","sources","mergeLane","mergedLanes","result","Promise","all","mergedLane","saveLane","importDetails","_getImportDetails","importedIds","v","component","flat","importedDeps","allDependenciesIds","join","_throwForPotentialIssues","writtenComponents","componentsWithDependencies","multipleVersionDependenciesToConsumer","objects","_fetchDivergeData","_throwForDivergedHistory","_writeToFileSystem","_saveLaneDataIfNeeded","c","modelComponent","getModelComponent","setDivergeData","divergeData","push","merge","divergedComponents","filter","getDivergeData","isDiverged","snapsLocal","snapsOnSourceOnly","snapsRemote","snapsOnTargetOnly","ComponentsPendingMerge","fromOriginalScope","scopeComponentsImporter","ScopeComponentsImporter","getInstance","importManyDeltaWithoutDeps","fromHead","allHistory","collectParents","results","importManyFromOriginalScopes","importMany","preferDependencyGraph","fetchDeps","getBitIdsForLanes","bitIdsFromLane","flatMap","mainIds","bitMap","getAuthoredAndImportedBitIdsOfDefaultLane","mainIdsToImport","hasScope","hasWithoutVersion","idsWithWildcard","hasWildcard","idsWithoutWildcard","idsWithoutWildcardPreferFromLane","idStr","BitId","parse","fromLane","searchWithoutVersion","idsFromRemote","getRemoteBitIdsByWildcards","existingOnLanes","BitError","l","name","toStringWithoutVersion","getBitIdsForNonLanes","importDependenciesDirectly","importDependents","graphs","_getComponentsGraphs","dependenciesIds","_getDependenciesFromGraph","getGraphIds","targetCompIds","resolveMultipleComponentIds","sourceIds","listIds","findIdsFromSourcesToTargets","_legacy","uniqFromArray","dependencies","bitId","componentGraph","find","scopeName","dependenciesInfo","getDependenciesInfo","d","R","flatten","_getDependentsFromGraph","dependents","dependentsInfo","getDependentsInfo","remotes","getScopeRemotes","scopeGraphs","override","componentsIdsToImport","getIdsToImportFromBitmap","isEmpty","NothingToImport","_throwForModifiedOrNewComponents","componentWithDependencies","authoredExportedComponents","getExportedComponents","versionsP","getModelComponentIfExist","listVersions","versions","fromPairs","currentVersions","components","detailsP","Object","keys","ShowDoctorError","afterImportVersions","versionDifference","difference","getStatus","filesStatus","mergeStatus","deprecated","isDeprecated","removed","isRemoved","latestVersion","getHeadRegardlessOfLaneAsTagOrHash","includes","status","missingDeps","getMissingDependencies","_throwForDifferentComponentWithSameName","componentsStatuses","getManyComponentsStatuses","modifiedComponents","modified","newlyCreated","GeneralError","chalk","yellow","forEach","existingId","getParsedIdIfExist","_getMergeStatus","componentStatus","getComponentStatusById","mergeResults","componentModel","existingBitMapBitId","getBitId","ignoreVersion","fsComponent","loadComponent","currentlyUsedVersion","version","baseComponent","loadVersion","otherComponent","threeWayMerge","otherLabel","currentComponent","currentLabel","_updateComponentFilesPerMergeStrategy","componentMergeStatus","files","hasConflicts","mergeStrategy","MergeOptions","ours","file","pathNormalizeToLinux","relative","FileStatus","unchanged","updateComponentId","hasChanged","theirs","updated","modifiedFiles","applyModifiedVersion","updateAllComponentsAccordingToMergeStrategy","componentsStatusP","componentsStatus","componentWithConflict","getMergeStrategyInteractive","componentsToWrite","unchangedFiles","removeNulls","reject","isNil","_shouldSaveLaneData","isOnLane","currentLane","getCurrentLaneObject","idsFromRemoteLanes","comp","existOnRemoteLane","has","saveInLane","setComponentProp","ref","getRef","addComponent","head","manyComponentsWriter","ManyComponentsWriter","writeToPath","writeConfig","installNpmPackages","verbose","writeAll"],"sources":["import-components.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport pMapSeries from 'p-map-series';\nimport { getRemoteBitIdsByWildcards } from '@teambit/legacy/dist/api/consumer/lib/list-scope';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_IMPORT_ACTION } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport ShowDoctorError from '@teambit/legacy/dist/error/show-doctor-error';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport Remotes from '@teambit/legacy/dist/remotes/remotes';\nimport { ComponentWithDependencies, Scope } from '@teambit/legacy/dist/scope';\nimport DependencyGraph from '@teambit/legacy/dist/scope/graph/scope-graph';\nimport { Lane, ModelComponent, Version } from '@teambit/legacy/dist/scope/models';\nimport { getScopeRemotes } from '@teambit/legacy/dist/scope/scope-remotes';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport hasWildcard from '@teambit/legacy/dist/utils/string/has-wildcard';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { applyModifiedVersion } from '@teambit/legacy/dist/consumer/versions-ops/checkout-version';\nimport {\n FileStatus,\n getMergeStrategyInteractive,\n MergeOptions,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { FilesStatus, MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/merge-version';\nimport { MergeResultsThreeWay } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/three-way-merge';\nimport ComponentsPendingMerge from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-merge';\nimport ManyComponentsWriter from '@teambit/legacy/dist/consumer/component-ops/many-components-writer';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport VersionDependencies, {\n multipleVersionDependenciesToConsumer,\n} from '@teambit/legacy/dist/scope/version-dependencies';\nimport { GraphMain } from '@teambit/graph';\nimport { Workspace } from '@teambit/workspace';\n\nexport type ImportOptions = {\n ids: string[]; // array might be empty\n verbose?: boolean;\n merge?: boolean;\n mergeStrategy?: MergeStrategy;\n writeToPath?: string;\n writeConfig?: boolean;\n override?: boolean;\n installNpmPackages: boolean; // default: true\n objectsOnly?: boolean;\n saveDependenciesAsComponents?: boolean;\n importDependenciesDirectly?: boolean; // default: false, normally it imports them as packages or nested, not as imported\n importDependents?: boolean;\n fromOriginalScope?: boolean; // default: false, otherwise, it fetches flattened dependencies from their dependents\n saveInLane?: boolean; // save the imported component on the current lane (won't be available on main)\n lanes?: {\n laneIds: LaneId[];\n lanes: Lane[]; // it can be an empty array when a lane is a local lane and doesn't exist on the remote\n };\n allHistory?: boolean;\n fetchDeps?: boolean; // by default, if a component was tagged with > 0.0.900, it has the flattened-deps-graph in the object\n};\ntype ComponentMergeStatus = {\n componentWithDependencies: ComponentWithDependencies;\n mergeResults: MergeResultsThreeWay | null | undefined;\n};\ntype ImportedVersions = { [id: string]: string[] };\nexport type ImportStatus = 'added' | 'updated' | 'up to date';\nexport type ImportDetails = {\n id: string;\n versions: string[];\n latestVersion: string | null;\n status: ImportStatus;\n filesStatus: FilesStatus | null | undefined;\n missingDeps: BitId[];\n deprecated: boolean;\n removed?: boolean;\n};\nexport type ImportResult = {\n importedIds: BitId[];\n importedDeps: BitId[];\n writtenComponents?: Component[];\n importDetails: ImportDetails[];\n cancellationMessage?: string;\n};\n\nexport default class ImportComponents {\n consumer: Consumer;\n scope: Scope;\n mergeStatus: { [id: string]: FilesStatus };\n private laneObjects: Lane[];\n private divergeData: Array<ModelComponent> = [];\n constructor(private workspace: Workspace, private graph: GraphMain, public options: ImportOptions) {\n this.consumer = this.workspace.consumer;\n this.scope = this.consumer.scope;\n this.laneObjects = this.options.lanes ? (this.options.lanes.lanes as Lane[]) : [];\n }\n\n importComponents(): Promise<ImportResult> {\n loader.start(BEFORE_IMPORT_ACTION);\n this.options.saveDependenciesAsComponents = this.consumer.config._saveDependenciesAsComponents;\n if (this.options.lanes && !this.options.ids.length) {\n return this.importObjectsOnLane();\n }\n if (this.options.ids.length) {\n return this.importSpecificComponents();\n }\n return this.importAccordingToBitMap();\n }\n\n async importObjectsOnLane(): Promise<ImportResult> {\n if (!this.options.objectsOnly) {\n throw new Error(`importObjectsOnLane should have objectsOnly=true`);\n }\n if (this.laneObjects.length > 1) {\n throw new Error(`importObjectsOnLane does not support more than one lane`);\n }\n const lane = this.laneObjects.length ? this.laneObjects[0] : undefined;\n const bitIds: BitIds = await this.getBitIds();\n lane\n ? logger.debug(`importObjectsOnLane, Lane: ${lane.id()}, Ids: ${bitIds.toString()}`)\n : logger.debug(`importObjectsOnLane, the lane does not exist on the remote. importing only the main components`);\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane,\n });\n\n // import lane components from their original scope, this way, it's possible to run diff/merge on them.\n // don't use `scope.getDefaultLaneIdsFromLane()`. we need all components, because it's possible that a component\n // does't have \"head\" locally although it exits in the origin-scope. it happens when the component was created on\n // the origin-scope after a component with the same-name was created on the lane\n if (lane) {\n // @todo: optimize this maybe. currently, it imports twice.\n // try to make the previous `importComponentsObjectsHarmony` import the same component once from the original\n // scope and once from the lane-scope.\n const mainIdsLatest = BitIds.fromArray(lane.toBitIds().map((m) => m.changeVersion(undefined)));\n await this._importComponentsObjects(mainIdsLatest, {\n ignoreMissingHead: true,\n });\n }\n\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n importDetails,\n };\n }\n\n async importSpecificComponents(): Promise<ImportResult> {\n logger.debug(`importSpecificComponents, Ids: ${this.options.ids.join(', ')}`);\n const bitIds: BitIds = await this.getBitIds();\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n await this._throwForPotentialIssues(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane: this.laneObjects?.[0],\n });\n if (this.laneObjects && this.options.objectsOnly) {\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n }\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentsWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._fetchDivergeData(componentsWithDependencies);\n this._throwForDivergedHistory();\n await this._writeToFileSystem(componentsWithDependencies);\n await this._saveLaneDataIfNeeded(componentsWithDependencies);\n writtenComponents = componentsWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n async _fetchDivergeData(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n // no need for it when importing objects only. if it's enabled, in case when on a lane and a non-lane\n // component is in bitmap using an older version, it throws \"getDivergeData: unable to find Version X of Y\"\n return;\n }\n await Promise.all(\n componentsWithDependencies.map(async ({ component }) => {\n const modelComponent = await this.scope.getModelComponent(component.id);\n await modelComponent.setDivergeData(this.scope.objects, undefined, false);\n this.divergeData.push(modelComponent);\n })\n );\n }\n\n _throwForDivergedHistory() {\n if (this.options.merge || this.options.objectsOnly) return;\n const divergedComponents = this.divergeData.filter((modelComponent) =>\n modelComponent.getDivergeData().isDiverged()\n );\n if (divergedComponents.length) {\n const divergeData = divergedComponents.map((modelComponent) => ({\n id: modelComponent.id(),\n snapsLocal: modelComponent.getDivergeData().snapsOnSourceOnly.length,\n snapsRemote: modelComponent.getDivergeData().snapsOnTargetOnly.length,\n }));\n throw new ComponentsPendingMerge(divergeData);\n }\n }\n\n private async _importComponentsObjects(\n ids: BitIds,\n {\n fromOriginalScope = false,\n lane,\n ignoreMissingHead = false,\n }: {\n fromOriginalScope?: boolean;\n lane?: Lane;\n ignoreMissingHead?: boolean;\n }\n ): Promise<VersionDependencies[]> {\n const scopeComponentsImporter = ScopeComponentsImporter.getInstance(this.scope);\n await scopeComponentsImporter.importManyDeltaWithoutDeps({\n ids,\n fromHead: this.options.allHistory,\n collectParents: this.options.allHistory,\n lane,\n // in case a user is merging a lane into a new workspace, then, locally main has head, but remotely the head is\n // empty, until it's exported. going to the remote and asking this component will throw an error if ignoreMissingHead is false\n ignoreMissingHead: true,\n });\n loader.start(`import ${ids.length} components with their dependencies (if missing)`);\n const results = fromOriginalScope\n ? await scopeComponentsImporter.importManyFromOriginalScopes(ids)\n : await scopeComponentsImporter.importMany({\n ids,\n ignoreMissingHead,\n lanes: lane ? [lane] : undefined,\n preferDependencyGraph: !this.options.fetchDeps,\n });\n\n return results;\n }\n\n /**\n * consider the following use cases:\n * 1) no ids were provided. it should import all the lanes components objects AND main components objects\n * (otherwise, if main components are not imported and are missing, then bit-status complains about it)\n * 2) ids are provided with wildcards. we assume the user wants only the ids that are available on the lane.\n * because a user may entered \"bit import scope/*\" and this scope has many component on the lane and many not on the lane.\n * we want to bring only the components on the lane.\n * 3) ids are provided without wildcards. here, the user knows exactly what's needed and it's ok to get the ids from\n * main if not found on the lane.\n */\n private async getBitIdsForLanes(): Promise<BitId[]> {\n if (!this.options.lanes) {\n throw new Error(`getBitIdsForLanes: this.options.lanes must be set`);\n }\n const bitIdsFromLane = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n\n if (!this.options.ids.length) {\n const mainIds = this.consumer.bitMap.getAuthoredAndImportedBitIdsOfDefaultLane();\n const mainIdsToImport = mainIds.filter((id) => id.hasScope() && !bitIdsFromLane.hasWithoutVersion(id));\n bitIdsFromLane.push(...mainIdsToImport);\n return bitIdsFromLane;\n }\n\n const idsWithWildcard = this.options.ids.filter((id) => hasWildcard(id));\n const idsWithoutWildcard = this.options.ids.filter((id) => !hasWildcard(id));\n const idsWithoutWildcardPreferFromLane = idsWithoutWildcard.map((idStr) => {\n const id = BitId.parse(idStr, true);\n const fromLane = bitIdsFromLane.searchWithoutVersion(id);\n return fromLane || id;\n });\n\n const bitIds: BitId[] = [...idsWithoutWildcardPreferFromLane];\n\n if (!idsWithWildcard) {\n return bitIds;\n }\n\n await pMapSeries(idsWithWildcard, async (idStr: string) => {\n const idsFromRemote = await getRemoteBitIdsByWildcards(idStr);\n const existingOnLanes = idsFromRemote.filter((id) => bitIdsFromLane.hasWithoutVersion(id));\n if (!existingOnLanes.length) {\n throw new BitError(`the id with the the wildcard \"${idStr}\" has been parsed to multiple component ids.\nhowever, none of them existing on the lane \"${this.laneObjects.map((l) => l.name).join(', ')}\"\nin case you intend to import these components from main, please run the following:\nbit import ${idsFromRemote.map((id) => id.toStringWithoutVersion()).join(' ')}`);\n }\n bitIds.push(...existingOnLanes);\n });\n\n return bitIds;\n }\n\n private async getBitIdsForNonLanes() {\n const bitIds: BitId[] = [];\n await Promise.all(\n this.options.ids.map(async (idStr: string) => {\n if (hasWildcard(idStr)) {\n const ids = await getRemoteBitIdsByWildcards(idStr);\n loader.start(BEFORE_IMPORT_ACTION); // it stops the previous loader of BEFORE_REMOTE_LIST\n bitIds.push(...ids);\n } else {\n bitIds.push(BitId.parse(idStr, true)); // we don't support importing without a scope name\n }\n })\n );\n\n return bitIds;\n }\n\n private async getBitIds(): Promise<BitIds> {\n const bitIds: BitId[] = this.options.lanes ? await this.getBitIdsForLanes() : await this.getBitIdsForNonLanes();\n if (this.options.importDependenciesDirectly || this.options.importDependents) {\n const graphs = await this._getComponentsGraphs(bitIds);\n if (this.options.importDependenciesDirectly) {\n const dependenciesIds = this._getDependenciesFromGraph(bitIds, graphs);\n bitIds.push(...dependenciesIds);\n }\n if (this.options.importDependents) {\n const graph = await this.graph.getGraphIds();\n const targetCompIds = await this.workspace.resolveMultipleComponentIds(bitIds);\n const sourceIds = await this.workspace.listIds();\n const ids = graph.findIdsFromSourcesToTargets(sourceIds, targetCompIds);\n logger.debug(\n `found ${ids.length} component for --dependents flag`,\n ids.map((id) => id.toString())\n );\n bitIds.push(...ids.map((id) => id._legacy));\n }\n }\n return BitIds.uniqFromArray(bitIds);\n }\n\n _getDependenciesFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependencies = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependenciesInfo = componentGraph.getDependenciesInfo(bitId);\n return dependenciesInfo.map((d) => d.id);\n });\n return R.flatten(dependencies);\n }\n\n _getDependentsFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependents = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependentsInfo = componentGraph.getDependentsInfo(bitId);\n return dependentsInfo.map((d) => d.id);\n });\n return R.flatten(dependents);\n }\n\n async _getComponentsGraphs(bitIds: BitId[]): Promise<DependencyGraph[]> {\n const remotes: Remotes = await getScopeRemotes(this.consumer.scope);\n return remotes.scopeGraphs(bitIds, this.consumer.scope);\n }\n\n async importAccordingToBitMap(): Promise<ImportResult> {\n this.options.objectsOnly = !this.options.merge && !this.options.override;\n const componentsIdsToImport = this.getIdsToImportFromBitmap();\n\n if (R.isEmpty(componentsIdsToImport)) {\n throw new NothingToImport();\n }\n await this._throwForModifiedOrNewComponents(componentsIdsToImport);\n const beforeImportVersions = await this._getCurrentVersions(componentsIdsToImport);\n if (!componentsIdsToImport.length) {\n return {\n importedIds: [],\n importedDeps: [],\n importDetails: [],\n };\n }\n if (!this.options.objectsOnly) {\n throw new Error(`bit import with no ids and --merge flag was not implemented yet`);\n }\n const versionDependenciesArr = await this._importComponentsObjects(componentsIdsToImport, {\n fromOriginalScope: this.options.fromOriginalScope,\n });\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._writeToFileSystem(componentWithDependencies);\n writtenComponents = componentWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n private getIdsToImportFromBitmap() {\n const authoredExportedComponents = this.consumer.bitMap.getExportedComponents();\n return BitIds.fromArray(authoredExportedComponents);\n }\n\n async _getCurrentVersions(ids: BitIds): Promise<ImportedVersions> {\n const versionsP = ids.map(async (id) => {\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id.changeVersion(undefined));\n const idStr = id.toStringWithoutVersion();\n if (!modelComponent) return [idStr, []];\n return [idStr, modelComponent.listVersions()];\n });\n const versions = await Promise.all(versionsP);\n return R.fromPairs(versions);\n }\n\n /**\n * get import details, includes the diff between the versions array before import and after import\n */\n async _getImportDetails(\n currentVersions: ImportedVersions,\n components: VersionDependencies[]\n ): Promise<ImportDetails[]> {\n const detailsP = components.map(async (component) => {\n const id = component.component.id;\n const idStr = id.toStringWithoutVersion();\n const beforeImportVersions = currentVersions[idStr];\n if (!beforeImportVersions) {\n throw new Error(\n `_getImportDetails failed finding ${idStr} in currentVersions, which has ${Object.keys(currentVersions).join(\n ', '\n )}`\n );\n }\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id);\n if (!modelComponent) throw new ShowDoctorError(`imported component ${idStr} was not found in the model`);\n const afterImportVersions = modelComponent.listVersions();\n const versionDifference: string[] = R.difference(afterImportVersions, beforeImportVersions);\n const getStatus = (): ImportStatus => {\n if (!versionDifference.length) return 'up to date';\n if (!beforeImportVersions.length) return 'added';\n return 'updated';\n };\n const filesStatus = this.mergeStatus && this.mergeStatus[idStr] ? this.mergeStatus[idStr] : null;\n const deprecated = await modelComponent.isDeprecated(this.scope.objects);\n const removed = await component.component.component.isRemoved(this.scope.objects);\n const latestVersion = modelComponent.getHeadRegardlessOfLaneAsTagOrHash(true);\n return {\n id: idStr,\n versions: versionDifference,\n latestVersion: versionDifference.includes(latestVersion) ? latestVersion : null,\n status: getStatus(),\n filesStatus,\n missingDeps: this.options.fetchDeps ? component.getMissingDependencies() : [],\n deprecated,\n removed,\n };\n });\n return Promise.all(detailsP);\n }\n\n async _throwForPotentialIssues(ids: BitIds): Promise<void> {\n await this._throwForModifiedOrNewComponents(ids);\n this._throwForDifferentComponentWithSameName(ids);\n }\n\n async _throwForModifiedOrNewComponents(ids: BitIds): Promise<void> {\n // the typical objectsOnly option is when a user cloned a project with components tagged to the source code, but\n // doesn't have the model objects. in that case, calling getComponentStatusById() may return an error as it relies\n // on the model objects when there are dependencies\n if (this.options.override || this.options.objectsOnly || this.options.merge) return;\n const componentsStatuses = await this.consumer.getManyComponentsStatuses(ids);\n const modifiedComponents = componentsStatuses\n .filter(({ status }) => status.modified || status.newlyCreated)\n .map((c) => c.id);\n if (modifiedComponents.length) {\n throw new GeneralError(\n chalk.yellow(\n `unable to import the following components due to local changes, use --merge flag to merge your local changes or --override to override them\\n${modifiedComponents.join(\n '\\n'\n )} `\n )\n );\n }\n }\n\n /**\n * Model Component id() calculation uses id.toString() for the hash.\n * If an imported component has scopereadonly name equals to a local name, both will have the exact same\n * hash and they'll override each other.\n */\n _throwForDifferentComponentWithSameName(ids: BitIds): void {\n ids.forEach((id: BitId) => {\n const existingId = this.consumer.getParsedIdIfExist(id.toStringWithoutVersion());\n if (existingId && !existingId.hasScope()) {\n throw new GeneralError(`unable to import ${id.toString()}. the component name conflicted with your local component with the same name.\n it's fine to have components with the same name as long as their scope names are different.\n Make sure to export your component first to get a scope and then try importing again`);\n }\n });\n }\n\n async _getMergeStatus(componentWithDependencies: ComponentWithDependencies): Promise<ComponentMergeStatus> {\n const component = componentWithDependencies.component;\n const componentStatus = await this.consumer.getComponentStatusById(component.id);\n const mergeStatus: ComponentMergeStatus = { componentWithDependencies, mergeResults: null };\n if (!componentStatus.modified) return mergeStatus;\n const componentModel = await this.consumer.scope.getModelComponent(component.id);\n const existingBitMapBitId = this.consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const fsComponent = await this.consumer.loadComponent(existingBitMapBitId);\n const currentlyUsedVersion = existingBitMapBitId.version;\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const baseComponent: Version = await componentModel.loadVersion(currentlyUsedVersion, this.consumer.scope.objects);\n const otherComponent: Version = await componentModel.loadVersion(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.id.version,\n this.consumer.scope.objects\n );\n const mergeResults = await threeWayMerge({\n consumer: this.consumer,\n otherComponent,\n otherLabel: component.id.version as string,\n currentComponent: fsComponent,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n mergeStatus.mergeResults = mergeResults;\n return mergeStatus;\n }\n\n /**\n * 1) when there are conflicts and the strategy is \"ours\", don't write the imported component to\n * the filesystem, only update bitmap.\n *\n * 2) when there are conflicts and the strategy is \"theirs\", override the local changes by the\n * imported component. (similar to --override)\n *\n * 3) when there is no conflict or there are conflicts and the strategy is manual, write the files\n * according to the merge result. (done by applyModifiedVersion())\n */\n _updateComponentFilesPerMergeStrategy(componentMergeStatus: ComponentMergeStatus): FilesStatus | null | undefined {\n const mergeResults = componentMergeStatus.mergeResults;\n if (!mergeResults) return null;\n const component = componentMergeStatus.componentWithDependencies.component;\n const files = component.files;\n\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.ours) {\n const filesStatus = {};\n // don't write the files to the filesystem, only bump the bitmap version.\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.unchanged;\n });\n this.consumer.bitMap.updateComponentId(component.id);\n this.consumer.bitMap.hasChanged = true;\n return filesStatus;\n }\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.theirs) {\n const filesStatus = {};\n // the local changes will be overridden (as if the user entered --override flag for this component)\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.updated;\n });\n return filesStatus;\n }\n const { filesStatus, modifiedFiles } = applyModifiedVersion(\n component.files,\n mergeResults,\n this.options.mergeStrategy\n );\n component.files = modifiedFiles;\n\n return filesStatus;\n }\n\n /**\n * update the component files if they are modified and there is a merge strategy.\n * returns only the components that need to be written to the filesystem\n */\n async updateAllComponentsAccordingToMergeStrategy(\n componentsWithDependencies: ComponentWithDependencies[]\n ): Promise<ComponentWithDependencies[]> {\n if (!this.options.merge) return componentsWithDependencies;\n const componentsStatusP = componentsWithDependencies.map((componentWithDependencies: ComponentWithDependencies) => {\n return this._getMergeStatus(componentWithDependencies);\n });\n const componentsStatus = await Promise.all(componentsStatusP);\n const componentWithConflict = componentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict && !this.options.mergeStrategy) {\n this.options.mergeStrategy = await getMergeStrategyInteractive();\n }\n this.mergeStatus = {};\n\n const componentsToWrite = componentsStatus.map((componentStatus) => {\n const filesStatus: FilesStatus | null | undefined = this._updateComponentFilesPerMergeStrategy(componentStatus);\n const componentWithDependencies = componentStatus.componentWithDependencies;\n if (!filesStatus) return componentWithDependencies;\n this.mergeStatus[componentWithDependencies.component.id.toStringWithoutVersion()] = filesStatus;\n const unchangedFiles = Object.keys(filesStatus).filter((file) => filesStatus[file] === FileStatus.unchanged);\n if (unchangedFiles.length === Object.keys(filesStatus).length) {\n // all files are unchanged\n return null;\n }\n return componentWithDependencies;\n });\n const removeNulls = R.reject(R.isNil);\n return removeNulls(componentsToWrite);\n }\n\n _shouldSaveLaneData(): boolean {\n if (this.options.objectsOnly) {\n return false;\n }\n return this.consumer.isOnLane();\n }\n\n async _saveLaneDataIfNeeded(componentsWithDependencies: ComponentWithDependencies[]): Promise<void> {\n if (!this._shouldSaveLaneData()) {\n return;\n }\n const currentLane = await this.consumer.getCurrentLaneObject();\n if (!currentLane) {\n return; // user on main\n }\n const idsFromRemoteLanes = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n const components = componentsWithDependencies.map((c) => c.component);\n await Promise.all(\n components.map(async (comp) => {\n const existOnRemoteLane = idsFromRemoteLanes.has(comp.id);\n if (!existOnRemoteLane && !this.options.saveInLane) {\n this.consumer.bitMap.setComponentProp(comp.id, 'onLanesOnly', false);\n return;\n }\n const modelComponent = await this.scope.getModelComponent(comp.id);\n const ref = modelComponent.getRef(comp.id.version as string);\n if (!ref) throw new Error(`_saveLaneDataIfNeeded unable to get ref for ${comp.id.toString()}`);\n currentLane.addComponent({ id: comp.id, head: ref });\n })\n );\n await this.scope.lanes.saveLane(currentLane);\n }\n\n async _writeToFileSystem(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n return;\n }\n const componentsToWrite = await this.updateAllComponentsAccordingToMergeStrategy(componentsWithDependencies);\n const manyComponentsWriter = new ManyComponentsWriter({\n consumer: this.consumer,\n componentsWithDependencies: componentsToWrite,\n writeToPath: this.options.writeToPath,\n writeConfig: this.options.writeConfig,\n installNpmPackages: this.options.installNpmPackages,\n verbose: this.options.verbose,\n override: this.options.override,\n });\n await manyComponentsWriter.writeAll();\n }\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["ImportComponents","constructor","workspace","graph","componentWriter","options","consumer","scope","laneObjects","lanes","importComponents","loader","start","BEFORE_IMPORT_ACTION","saveDependenciesAsComponents","config","_saveDependenciesAsComponents","ids","length","importObjectsOnLane","importSpecificComponents","importAccordingToBitMap","objectsOnly","Error","lane","undefined","bitIds","getBitIds","logger","debug","id","toString","beforeImportVersions","_getCurrentVersions","versionDependenciesArr","_importComponentsObjects","mainIdsLatest","BitIds","fromArray","toBitIds","map","m","changeVersion","ignoreMissingHead","mergeAllLanesResults","pMapSeries","laneObject","sources","mergeLane","mergedLanes","result","Promise","all","mergedLane","saveLane","importDetails","_getImportDetails","importedIds","v","component","flat","importedDeps","allDependenciesIds","join","_throwForPotentialIssues","writtenComponents","componentsWithDependencies","multipleVersionDependenciesToConsumer","objects","_fetchDivergeData","_throwForDivergedHistory","_writeToFileSystem","_saveLaneDataIfNeeded","c","modelComponent","getModelComponent","setDivergeData","divergeData","push","merge","divergedComponents","filter","getDivergeData","isDiverged","snapsLocal","snapsOnSourceOnly","snapsRemote","snapsOnTargetOnly","ComponentsPendingMerge","fromOriginalScope","scopeComponentsImporter","ScopeComponentsImporter","getInstance","importManyDeltaWithoutDeps","fromHead","allHistory","collectParents","results","importManyFromOriginalScopes","importMany","preferDependencyGraph","fetchDeps","getBitIdsForLanes","bitIdsFromLane","flatMap","mainIds","bitMap","getAuthoredAndImportedBitIdsOfDefaultLane","mainIdsToImport","hasScope","hasWithoutVersion","idsWithWildcard","hasWildcard","idsWithoutWildcard","idsWithoutWildcardPreferFromLane","idStr","BitId","parse","fromLane","searchWithoutVersion","idsFromRemote","getRemoteBitIdsByWildcards","existingOnLanes","BitError","l","name","toStringWithoutVersion","getBitIdsForNonLanes","importDependenciesDirectly","importDependents","graphs","_getComponentsGraphs","dependenciesIds","_getDependenciesFromGraph","getGraphIds","targetCompIds","resolveMultipleComponentIds","sourceIds","listIds","findIdsFromSourcesToTargets","_legacy","uniqFromArray","dependencies","bitId","componentGraph","find","scopeName","dependenciesInfo","getDependenciesInfo","d","R","flatten","_getDependentsFromGraph","dependents","dependentsInfo","getDependentsInfo","remotes","getScopeRemotes","scopeGraphs","override","componentsIdsToImport","getIdsToImportFromBitmap","isEmpty","NothingToImport","_throwForModifiedOrNewComponents","componentWithDependencies","allIds","getAllBitIdsFromAllLanes","versionsP","getModelComponentIfExist","listVersions","versions","fromPairs","currentVersions","components","detailsP","Object","keys","ShowDoctorError","afterImportVersions","versionDifference","difference","getStatus","filesStatus","mergeStatus","deprecated","isDeprecated","removed","isRemoved","latestVersion","getHeadRegardlessOfLaneAsTagOrHash","includes","status","missingDeps","getMissingDependencies","_throwForDifferentComponentWithSameName","componentsStatuses","getManyComponentsStatuses","modifiedComponents","modified","newlyCreated","GeneralError","chalk","yellow","forEach","existingId","getParsedIdIfExist","_getMergeStatus","componentStatus","getComponentStatusById","mergeResults","componentModel","existingBitMapBitId","getBitId","ignoreVersion","fsComponent","loadComponent","currentlyUsedVersion","version","baseComponent","loadVersion","otherComponent","threeWayMerge","otherLabel","currentComponent","currentLabel","_updateComponentFilesPerMergeStrategy","componentMergeStatus","files","hasConflicts","mergeStrategy","MergeOptions","ours","file","pathNormalizeToLinux","relative","FileStatus","unchanged","updateComponentId","hasChanged","theirs","updated","modifiedFiles","applyModifiedVersion","updateAllComponentsAccordingToMergeStrategy","componentsStatusP","componentsStatus","componentWithConflict","getMergeStrategyInteractive","componentsToWrite","unchangedFiles","removeNulls","reject","isNil","_shouldSaveLaneData","isOnLane","currentLane","getCurrentLaneObject","idsFromRemoteLanes","comp","existOnRemoteLane","has","saveInLane","setComponentProp","ref","getRef","addComponent","head","manyComponentsWriterOpts","writeToPath","writeConfig","installNpmPackages","verbose","writeMany"],"sources":["import-components.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport pMapSeries from 'p-map-series';\nimport { getRemoteBitIdsByWildcards } from '@teambit/legacy/dist/api/consumer/lib/list-scope';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_IMPORT_ACTION } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport ShowDoctorError from '@teambit/legacy/dist/error/show-doctor-error';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport Remotes from '@teambit/legacy/dist/remotes/remotes';\nimport { ComponentWithDependencies, Scope } from '@teambit/legacy/dist/scope';\nimport DependencyGraph from '@teambit/legacy/dist/scope/graph/scope-graph';\nimport { Lane, ModelComponent, Version } from '@teambit/legacy/dist/scope/models';\nimport { getScopeRemotes } from '@teambit/legacy/dist/scope/scope-remotes';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport hasWildcard from '@teambit/legacy/dist/utils/string/has-wildcard';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { applyModifiedVersion } from '@teambit/legacy/dist/consumer/versions-ops/checkout-version';\nimport {\n FileStatus,\n getMergeStrategyInteractive,\n MergeOptions,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { FilesStatus, MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/merge-version';\nimport { MergeResultsThreeWay } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/three-way-merge';\nimport ComponentsPendingMerge from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-merge';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport VersionDependencies, {\n multipleVersionDependenciesToConsumer,\n} from '@teambit/legacy/dist/scope/version-dependencies';\nimport { GraphMain } from '@teambit/graph';\nimport { Workspace } from '@teambit/workspace';\nimport { ComponentWriterMain } from '@teambit/component-writer';\n\nexport type ImportOptions = {\n ids: string[]; // array might be empty\n verbose?: boolean;\n merge?: boolean;\n mergeStrategy?: MergeStrategy;\n writeToPath?: string;\n writeConfig?: boolean;\n override?: boolean;\n installNpmPackages: boolean; // default: true\n objectsOnly?: boolean;\n saveDependenciesAsComponents?: boolean;\n importDependenciesDirectly?: boolean; // default: false, normally it imports them as packages or nested, not as imported\n importDependents?: boolean;\n fromOriginalScope?: boolean; // default: false, otherwise, it fetches flattened dependencies from their dependents\n saveInLane?: boolean; // save the imported component on the current lane (won't be available on main)\n lanes?: {\n laneIds: LaneId[];\n lanes: Lane[]; // it can be an empty array when a lane is a local lane and doesn't exist on the remote\n };\n allHistory?: boolean;\n fetchDeps?: boolean; // by default, if a component was tagged with > 0.0.900, it has the flattened-deps-graph in the object\n};\ntype ComponentMergeStatus = {\n componentWithDependencies: ComponentWithDependencies;\n mergeResults: MergeResultsThreeWay | null | undefined;\n};\ntype ImportedVersions = { [id: string]: string[] };\nexport type ImportStatus = 'added' | 'updated' | 'up to date';\nexport type ImportDetails = {\n id: string;\n versions: string[];\n latestVersion: string | null;\n status: ImportStatus;\n filesStatus: FilesStatus | null | undefined;\n missingDeps: BitId[];\n deprecated: boolean;\n removed?: boolean;\n};\nexport type ImportResult = {\n importedIds: BitId[];\n importedDeps: BitId[];\n writtenComponents?: Component[];\n importDetails: ImportDetails[];\n cancellationMessage?: string;\n};\n\nexport default class ImportComponents {\n consumer: Consumer;\n scope: Scope;\n mergeStatus: { [id: string]: FilesStatus };\n private laneObjects: Lane[];\n private divergeData: Array<ModelComponent> = [];\n constructor(\n private workspace: Workspace,\n private graph: GraphMain,\n private componentWriter: ComponentWriterMain,\n public options: ImportOptions\n ) {\n this.consumer = this.workspace.consumer;\n this.scope = this.consumer.scope;\n this.laneObjects = this.options.lanes ? (this.options.lanes.lanes as Lane[]) : [];\n }\n\n importComponents(): Promise<ImportResult> {\n loader.start(BEFORE_IMPORT_ACTION);\n this.options.saveDependenciesAsComponents = this.consumer.config._saveDependenciesAsComponents;\n if (this.options.lanes && !this.options.ids.length) {\n return this.importObjectsOnLane();\n }\n if (this.options.ids.length) {\n return this.importSpecificComponents();\n }\n return this.importAccordingToBitMap();\n }\n\n async importObjectsOnLane(): Promise<ImportResult> {\n if (!this.options.objectsOnly) {\n throw new Error(`importObjectsOnLane should have objectsOnly=true`);\n }\n if (this.laneObjects.length > 1) {\n throw new Error(`importObjectsOnLane does not support more than one lane`);\n }\n const lane = this.laneObjects.length ? this.laneObjects[0] : undefined;\n const bitIds: BitIds = await this.getBitIds();\n lane\n ? logger.debug(`importObjectsOnLane, Lane: ${lane.id()}, Ids: ${bitIds.toString()}`)\n : logger.debug(`importObjectsOnLane, the lane does not exist on the remote. importing only the main components`);\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane,\n });\n\n // import lane components from their original scope, this way, it's possible to run diff/merge on them.\n // don't use `scope.getDefaultLaneIdsFromLane()`. we need all components, because it's possible that a component\n // does't have \"head\" locally although it exits in the origin-scope. it happens when the component was created on\n // the origin-scope after a component with the same-name was created on the lane\n if (lane) {\n // @todo: optimize this maybe. currently, it imports twice.\n // try to make the previous `importComponentsObjectsHarmony` import the same component once from the original\n // scope and once from the lane-scope.\n const mainIdsLatest = BitIds.fromArray(lane.toBitIds().map((m) => m.changeVersion(undefined)));\n await this._importComponentsObjects(mainIdsLatest, {\n ignoreMissingHead: true,\n });\n }\n\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n importDetails,\n };\n }\n\n async importSpecificComponents(): Promise<ImportResult> {\n logger.debug(`importSpecificComponents, Ids: ${this.options.ids.join(', ')}`);\n const bitIds: BitIds = await this.getBitIds();\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n await this._throwForPotentialIssues(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane: this.laneObjects?.[0],\n });\n if (this.laneObjects && this.options.objectsOnly) {\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n }\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentsWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._fetchDivergeData(componentsWithDependencies);\n this._throwForDivergedHistory();\n await this._writeToFileSystem(componentsWithDependencies);\n await this._saveLaneDataIfNeeded(componentsWithDependencies);\n writtenComponents = componentsWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n async _fetchDivergeData(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n // no need for it when importing objects only. if it's enabled, in case when on a lane and a non-lane\n // component is in bitmap using an older version, it throws \"getDivergeData: unable to find Version X of Y\"\n return;\n }\n await Promise.all(\n componentsWithDependencies.map(async ({ component }) => {\n const modelComponent = await this.scope.getModelComponent(component.id);\n await modelComponent.setDivergeData(this.scope.objects, undefined, false);\n this.divergeData.push(modelComponent);\n })\n );\n }\n\n _throwForDivergedHistory() {\n if (this.options.merge || this.options.objectsOnly) return;\n const divergedComponents = this.divergeData.filter((modelComponent) =>\n modelComponent.getDivergeData().isDiverged()\n );\n if (divergedComponents.length) {\n const divergeData = divergedComponents.map((modelComponent) => ({\n id: modelComponent.id(),\n snapsLocal: modelComponent.getDivergeData().snapsOnSourceOnly.length,\n snapsRemote: modelComponent.getDivergeData().snapsOnTargetOnly.length,\n }));\n throw new ComponentsPendingMerge(divergeData);\n }\n }\n\n private async _importComponentsObjects(\n ids: BitIds,\n {\n fromOriginalScope = false,\n lane,\n ignoreMissingHead = false,\n }: {\n fromOriginalScope?: boolean;\n lane?: Lane;\n ignoreMissingHead?: boolean;\n }\n ): Promise<VersionDependencies[]> {\n const scopeComponentsImporter = ScopeComponentsImporter.getInstance(this.scope);\n await scopeComponentsImporter.importManyDeltaWithoutDeps({\n ids,\n fromHead: this.options.allHistory,\n collectParents: this.options.allHistory,\n lane,\n // in case a user is merging a lane into a new workspace, then, locally main has head, but remotely the head is\n // empty, until it's exported. going to the remote and asking this component will throw an error if ignoreMissingHead is false\n ignoreMissingHead: true,\n });\n loader.start(`import ${ids.length} components with their dependencies (if missing)`);\n const results = fromOriginalScope\n ? await scopeComponentsImporter.importManyFromOriginalScopes(ids)\n : await scopeComponentsImporter.importMany({\n ids,\n ignoreMissingHead,\n lanes: lane ? [lane] : undefined,\n preferDependencyGraph: !this.options.fetchDeps,\n });\n\n return results;\n }\n\n /**\n * consider the following use cases:\n * 1) no ids were provided. it should import all the lanes components objects AND main components objects\n * (otherwise, if main components are not imported and are missing, then bit-status complains about it)\n * 2) ids are provided with wildcards. we assume the user wants only the ids that are available on the lane.\n * because a user may entered \"bit import scope/*\" and this scope has many component on the lane and many not on the lane.\n * we want to bring only the components on the lane.\n * 3) ids are provided without wildcards. here, the user knows exactly what's needed and it's ok to get the ids from\n * main if not found on the lane.\n */\n private async getBitIdsForLanes(): Promise<BitId[]> {\n if (!this.options.lanes) {\n throw new Error(`getBitIdsForLanes: this.options.lanes must be set`);\n }\n const bitIdsFromLane = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n\n if (!this.options.ids.length) {\n const mainIds = this.consumer.bitMap.getAuthoredAndImportedBitIdsOfDefaultLane();\n const mainIdsToImport = mainIds.filter((id) => id.hasScope() && !bitIdsFromLane.hasWithoutVersion(id));\n bitIdsFromLane.push(...mainIdsToImport);\n return bitIdsFromLane;\n }\n\n const idsWithWildcard = this.options.ids.filter((id) => hasWildcard(id));\n const idsWithoutWildcard = this.options.ids.filter((id) => !hasWildcard(id));\n const idsWithoutWildcardPreferFromLane = idsWithoutWildcard.map((idStr) => {\n const id = BitId.parse(idStr, true);\n const fromLane = bitIdsFromLane.searchWithoutVersion(id);\n return fromLane || id;\n });\n\n const bitIds: BitId[] = [...idsWithoutWildcardPreferFromLane];\n\n if (!idsWithWildcard) {\n return bitIds;\n }\n\n await pMapSeries(idsWithWildcard, async (idStr: string) => {\n const idsFromRemote = await getRemoteBitIdsByWildcards(idStr);\n const existingOnLanes = idsFromRemote.filter((id) => bitIdsFromLane.hasWithoutVersion(id));\n if (!existingOnLanes.length) {\n throw new BitError(`the id with the the wildcard \"${idStr}\" has been parsed to multiple component ids.\nhowever, none of them existing on the lane \"${this.laneObjects.map((l) => l.name).join(', ')}\"\nin case you intend to import these components from main, please run the following:\nbit import ${idsFromRemote.map((id) => id.toStringWithoutVersion()).join(' ')}`);\n }\n bitIds.push(...existingOnLanes);\n });\n\n return bitIds;\n }\n\n private async getBitIdsForNonLanes() {\n const bitIds: BitId[] = [];\n await Promise.all(\n this.options.ids.map(async (idStr: string) => {\n if (hasWildcard(idStr)) {\n const ids = await getRemoteBitIdsByWildcards(idStr);\n loader.start(BEFORE_IMPORT_ACTION); // it stops the previous loader of BEFORE_REMOTE_LIST\n bitIds.push(...ids);\n } else {\n bitIds.push(BitId.parse(idStr, true)); // we don't support importing without a scope name\n }\n })\n );\n\n return bitIds;\n }\n\n private async getBitIds(): Promise<BitIds> {\n const bitIds: BitId[] = this.options.lanes ? await this.getBitIdsForLanes() : await this.getBitIdsForNonLanes();\n if (this.options.importDependenciesDirectly || this.options.importDependents) {\n const graphs = await this._getComponentsGraphs(bitIds);\n if (this.options.importDependenciesDirectly) {\n const dependenciesIds = this._getDependenciesFromGraph(bitIds, graphs);\n bitIds.push(...dependenciesIds);\n }\n if (this.options.importDependents) {\n const graph = await this.graph.getGraphIds();\n const targetCompIds = await this.workspace.resolveMultipleComponentIds(bitIds);\n const sourceIds = await this.workspace.listIds();\n const ids = graph.findIdsFromSourcesToTargets(sourceIds, targetCompIds);\n logger.debug(\n `found ${ids.length} component for --dependents flag`,\n ids.map((id) => id.toString())\n );\n bitIds.push(...ids.map((id) => id._legacy));\n }\n }\n return BitIds.uniqFromArray(bitIds);\n }\n\n _getDependenciesFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependencies = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependenciesInfo = componentGraph.getDependenciesInfo(bitId);\n return dependenciesInfo.map((d) => d.id);\n });\n return R.flatten(dependencies);\n }\n\n _getDependentsFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependents = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependentsInfo = componentGraph.getDependentsInfo(bitId);\n return dependentsInfo.map((d) => d.id);\n });\n return R.flatten(dependents);\n }\n\n async _getComponentsGraphs(bitIds: BitId[]): Promise<DependencyGraph[]> {\n const remotes: Remotes = await getScopeRemotes(this.consumer.scope);\n return remotes.scopeGraphs(bitIds, this.consumer.scope);\n }\n\n async importAccordingToBitMap(): Promise<ImportResult> {\n this.options.objectsOnly = !this.options.merge && !this.options.override;\n const componentsIdsToImport = this.getIdsToImportFromBitmap();\n\n if (R.isEmpty(componentsIdsToImport)) {\n throw new NothingToImport();\n }\n await this._throwForModifiedOrNewComponents(componentsIdsToImport);\n const beforeImportVersions = await this._getCurrentVersions(componentsIdsToImport);\n if (!componentsIdsToImport.length) {\n return {\n importedIds: [],\n importedDeps: [],\n importDetails: [],\n };\n }\n if (!this.options.objectsOnly) {\n throw new Error(`bit import with no ids and --merge flag was not implemented yet`);\n }\n const versionDependenciesArr = await this._importComponentsObjects(componentsIdsToImport, {\n fromOriginalScope: this.options.fromOriginalScope,\n });\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._writeToFileSystem(componentWithDependencies);\n writtenComponents = componentWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n private getIdsToImportFromBitmap() {\n const allIds = this.consumer.bitMap.getAllBitIdsFromAllLanes();\n return BitIds.fromArray(allIds.filter((id) => id.hasScope()));\n }\n\n async _getCurrentVersions(ids: BitIds): Promise<ImportedVersions> {\n const versionsP = ids.map(async (id) => {\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id.changeVersion(undefined));\n const idStr = id.toStringWithoutVersion();\n if (!modelComponent) return [idStr, []];\n return [idStr, modelComponent.listVersions()];\n });\n const versions = await Promise.all(versionsP);\n return R.fromPairs(versions);\n }\n\n /**\n * get import details, includes the diff between the versions array before import and after import\n */\n async _getImportDetails(\n currentVersions: ImportedVersions,\n components: VersionDependencies[]\n ): Promise<ImportDetails[]> {\n const detailsP = components.map(async (component) => {\n const id = component.component.id;\n const idStr = id.toStringWithoutVersion();\n const beforeImportVersions = currentVersions[idStr];\n if (!beforeImportVersions) {\n throw new Error(\n `_getImportDetails failed finding ${idStr} in currentVersions, which has ${Object.keys(currentVersions).join(\n ', '\n )}`\n );\n }\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id);\n if (!modelComponent) throw new ShowDoctorError(`imported component ${idStr} was not found in the model`);\n const afterImportVersions = modelComponent.listVersions();\n const versionDifference: string[] = R.difference(afterImportVersions, beforeImportVersions);\n const getStatus = (): ImportStatus => {\n if (!versionDifference.length) return 'up to date';\n if (!beforeImportVersions.length) return 'added';\n return 'updated';\n };\n const filesStatus = this.mergeStatus && this.mergeStatus[idStr] ? this.mergeStatus[idStr] : null;\n const deprecated = await modelComponent.isDeprecated(this.scope.objects);\n const removed = await component.component.component.isRemoved(this.scope.objects);\n const latestVersion = modelComponent.getHeadRegardlessOfLaneAsTagOrHash(true);\n return {\n id: idStr,\n versions: versionDifference,\n latestVersion: versionDifference.includes(latestVersion) ? latestVersion : null,\n status: getStatus(),\n filesStatus,\n missingDeps: this.options.fetchDeps ? component.getMissingDependencies() : [],\n deprecated,\n removed,\n };\n });\n return Promise.all(detailsP);\n }\n\n async _throwForPotentialIssues(ids: BitIds): Promise<void> {\n await this._throwForModifiedOrNewComponents(ids);\n this._throwForDifferentComponentWithSameName(ids);\n }\n\n async _throwForModifiedOrNewComponents(ids: BitIds): Promise<void> {\n // the typical objectsOnly option is when a user cloned a project with components tagged to the source code, but\n // doesn't have the model objects. in that case, calling getComponentStatusById() may return an error as it relies\n // on the model objects when there are dependencies\n if (this.options.override || this.options.objectsOnly || this.options.merge) return;\n const componentsStatuses = await this.consumer.getManyComponentsStatuses(ids);\n const modifiedComponents = componentsStatuses\n .filter(({ status }) => status.modified || status.newlyCreated)\n .map((c) => c.id);\n if (modifiedComponents.length) {\n throw new GeneralError(\n chalk.yellow(\n `unable to import the following components due to local changes, use --merge flag to merge your local changes or --override to override them\\n${modifiedComponents.join(\n '\\n'\n )} `\n )\n );\n }\n }\n\n /**\n * Model Component id() calculation uses id.toString() for the hash.\n * If an imported component has scopereadonly name equals to a local name, both will have the exact same\n * hash and they'll override each other.\n */\n _throwForDifferentComponentWithSameName(ids: BitIds): void {\n ids.forEach((id: BitId) => {\n const existingId = this.consumer.getParsedIdIfExist(id.toStringWithoutVersion());\n if (existingId && !existingId.hasScope()) {\n throw new GeneralError(`unable to import ${id.toString()}. the component name conflicted with your local component with the same name.\n it's fine to have components with the same name as long as their scope names are different.\n Make sure to export your component first to get a scope and then try importing again`);\n }\n });\n }\n\n async _getMergeStatus(componentWithDependencies: ComponentWithDependencies): Promise<ComponentMergeStatus> {\n const component = componentWithDependencies.component;\n const componentStatus = await this.consumer.getComponentStatusById(component.id);\n const mergeStatus: ComponentMergeStatus = { componentWithDependencies, mergeResults: null };\n if (!componentStatus.modified) return mergeStatus;\n const componentModel = await this.consumer.scope.getModelComponent(component.id);\n const existingBitMapBitId = this.consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const fsComponent = await this.consumer.loadComponent(existingBitMapBitId);\n const currentlyUsedVersion = existingBitMapBitId.version;\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const baseComponent: Version = await componentModel.loadVersion(currentlyUsedVersion, this.consumer.scope.objects);\n const otherComponent: Version = await componentModel.loadVersion(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.id.version,\n this.consumer.scope.objects\n );\n const mergeResults = await threeWayMerge({\n consumer: this.consumer,\n otherComponent,\n otherLabel: component.id.version as string,\n currentComponent: fsComponent,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n mergeStatus.mergeResults = mergeResults;\n return mergeStatus;\n }\n\n /**\n * 1) when there are conflicts and the strategy is \"ours\", don't write the imported component to\n * the filesystem, only update bitmap.\n *\n * 2) when there are conflicts and the strategy is \"theirs\", override the local changes by the\n * imported component. (similar to --override)\n *\n * 3) when there is no conflict or there are conflicts and the strategy is manual, write the files\n * according to the merge result. (done by applyModifiedVersion())\n */\n _updateComponentFilesPerMergeStrategy(componentMergeStatus: ComponentMergeStatus): FilesStatus | null | undefined {\n const mergeResults = componentMergeStatus.mergeResults;\n if (!mergeResults) return null;\n const component = componentMergeStatus.componentWithDependencies.component;\n const files = component.files;\n\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.ours) {\n const filesStatus = {};\n // don't write the files to the filesystem, only bump the bitmap version.\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.unchanged;\n });\n this.consumer.bitMap.updateComponentId(component.id);\n this.consumer.bitMap.hasChanged = true;\n return filesStatus;\n }\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.theirs) {\n const filesStatus = {};\n // the local changes will be overridden (as if the user entered --override flag for this component)\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.updated;\n });\n return filesStatus;\n }\n const { filesStatus, modifiedFiles } = applyModifiedVersion(\n component.files,\n mergeResults,\n this.options.mergeStrategy\n );\n component.files = modifiedFiles;\n\n return filesStatus;\n }\n\n /**\n * update the component files if they are modified and there is a merge strategy.\n * returns only the components that need to be written to the filesystem\n */\n async updateAllComponentsAccordingToMergeStrategy(\n componentsWithDependencies: ComponentWithDependencies[]\n ): Promise<ComponentWithDependencies[]> {\n if (!this.options.merge) return componentsWithDependencies;\n const componentsStatusP = componentsWithDependencies.map((componentWithDependencies: ComponentWithDependencies) => {\n return this._getMergeStatus(componentWithDependencies);\n });\n const componentsStatus = await Promise.all(componentsStatusP);\n const componentWithConflict = componentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict && !this.options.mergeStrategy) {\n this.options.mergeStrategy = await getMergeStrategyInteractive();\n }\n this.mergeStatus = {};\n\n const componentsToWrite = componentsStatus.map((componentStatus) => {\n const filesStatus: FilesStatus | null | undefined = this._updateComponentFilesPerMergeStrategy(componentStatus);\n const componentWithDependencies = componentStatus.componentWithDependencies;\n if (!filesStatus) return componentWithDependencies;\n this.mergeStatus[componentWithDependencies.component.id.toStringWithoutVersion()] = filesStatus;\n const unchangedFiles = Object.keys(filesStatus).filter((file) => filesStatus[file] === FileStatus.unchanged);\n if (unchangedFiles.length === Object.keys(filesStatus).length) {\n // all files are unchanged\n return null;\n }\n return componentWithDependencies;\n });\n const removeNulls = R.reject(R.isNil);\n return removeNulls(componentsToWrite);\n }\n\n _shouldSaveLaneData(): boolean {\n if (this.options.objectsOnly) {\n return false;\n }\n return this.consumer.isOnLane();\n }\n\n async _saveLaneDataIfNeeded(componentsWithDependencies: ComponentWithDependencies[]): Promise<void> {\n if (!this._shouldSaveLaneData()) {\n return;\n }\n const currentLane = await this.consumer.getCurrentLaneObject();\n if (!currentLane) {\n return; // user on main\n }\n const idsFromRemoteLanes = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n const components = componentsWithDependencies.map((c) => c.component);\n await Promise.all(\n components.map(async (comp) => {\n const existOnRemoteLane = idsFromRemoteLanes.has(comp.id);\n if (!existOnRemoteLane && !this.options.saveInLane) {\n this.consumer.bitMap.setComponentProp(comp.id, 'onLanesOnly', false);\n return;\n }\n const modelComponent = await this.scope.getModelComponent(comp.id);\n const ref = modelComponent.getRef(comp.id.version as string);\n if (!ref) throw new Error(`_saveLaneDataIfNeeded unable to get ref for ${comp.id.toString()}`);\n currentLane.addComponent({ id: comp.id, head: ref });\n })\n );\n await this.scope.lanes.saveLane(currentLane);\n }\n\n async _writeToFileSystem(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n return;\n }\n const componentsToWrite = await this.updateAllComponentsAccordingToMergeStrategy(componentsWithDependencies);\n const manyComponentsWriterOpts = {\n consumer: this.consumer,\n componentsWithDependencies: componentsToWrite,\n writeToPath: this.options.writeToPath,\n writeConfig: this.options.writeConfig,\n installNpmPackages: this.options.installNpmPackages,\n verbose: this.options.verbose,\n override: this.options.override,\n };\n await this.componentWriter.writeMany(manyComponentsWriterOpts);\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAKA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAQA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAqDe,MAAMA,gBAAgB,CAAC;EAMpCC,WAAW,CACDC,SAAoB,EACpBC,KAAgB,EAChBC,eAAoC,EACrCC,OAAsB,EAC7B;IAAA,KAJQH,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,KAAgB,GAAhBA,KAAgB;IAAA,KAChBC,eAAoC,GAApCA,eAAoC;IAAA,KACrCC,OAAsB,GAAtBA,OAAsB;IAAA;IAAA;IAAA;IAAA;IAAA,qDALc,EAAE;IAO7C,IAAI,CAACC,QAAQ,GAAG,IAAI,CAACJ,SAAS,CAACI,QAAQ;IACvC,IAAI,CAACC,KAAK,GAAG,IAAI,CAACD,QAAQ,CAACC,KAAK;IAChC,IAAI,CAACC,WAAW,GAAG,IAAI,CAACH,OAAO,CAACI,KAAK,GAAI,IAAI,CAACJ,OAAO,CAACI,KAAK,CAACA,KAAK,GAAc,EAAE;EACnF;EAEAC,gBAAgB,GAA0B;IACxCC,iBAAM,CAACC,KAAK,CAACC,sCAAoB,CAAC;IAClC,IAAI,CAACR,OAAO,CAACS,4BAA4B,GAAG,IAAI,CAACR,QAAQ,CAACS,MAAM,CAACC,6BAA6B;IAC9F,IAAI,IAAI,CAACX,OAAO,CAACI,KAAK,IAAI,CAAC,IAAI,CAACJ,OAAO,CAACY,GAAG,CAACC,MAAM,EAAE;MAClD,OAAO,IAAI,CAACC,mBAAmB,EAAE;IACnC;IACA,IAAI,IAAI,CAACd,OAAO,CAACY,GAAG,CAACC,MAAM,EAAE;MAC3B,OAAO,IAAI,CAACE,wBAAwB,EAAE;IACxC;IACA,OAAO,IAAI,CAACC,uBAAuB,EAAE;EACvC;EAEA,MAAMF,mBAAmB,GAA0B;IACjD,IAAI,CAAC,IAAI,CAACd,OAAO,CAACiB,WAAW,EAAE;MAC7B,MAAM,IAAIC,KAAK,CAAE,kDAAiD,CAAC;IACrE;IACA,IAAI,IAAI,CAACf,WAAW,CAACU,MAAM,GAAG,CAAC,EAAE;MAC/B,MAAM,IAAIK,KAAK,CAAE,yDAAwD,CAAC;IAC5E;IACA,MAAMC,IAAI,GAAG,IAAI,CAAChB,WAAW,CAACU,MAAM,GAAG,IAAI,CAACV,WAAW,CAAC,CAAC,CAAC,GAAGiB,SAAS;IACtE,MAAMC,MAAc,GAAG,MAAM,IAAI,CAACC,SAAS,EAAE;IAC7CH,IAAI,GACAI,iBAAM,CAACC,KAAK,CAAE,8BAA6BL,IAAI,CAACM,EAAE,EAAG,UAASJ,MAAM,CAACK,QAAQ,EAAG,EAAC,CAAC,GAClFH,iBAAM,CAACC,KAAK,CAAE,gGAA+F,CAAC;IAClH,MAAMG,oBAAoB,GAAG,MAAM,IAAI,CAACC,mBAAmB,CAACP,MAAM,CAAC;IACnE,MAAMQ,sBAAsB,GAAG,MAAM,IAAI,CAACC,wBAAwB,CAACT,MAAM,EAAE;MACzEF;IACF,CAAC,CAAC;;IAEF;IACA;IACA;IACA;IACA,IAAIA,IAAI,EAAE;MACR;MACA;MACA;MACA,MAAMY,aAAa,GAAGC,eAAM,CAACC,SAAS,CAACd,IAAI,CAACe,QAAQ,EAAE,CAACC,GAAG,CAAEC,CAAC,IAAKA,CAAC,CAACC,aAAa,CAACjB,SAAS,CAAC,CAAC,CAAC;MAC9F,MAAM,IAAI,CAACU,wBAAwB,CAACC,aAAa,EAAE;QACjDO,iBAAiB,EAAE;MACrB,CAAC,CAAC;IACJ;;IAEA;IACA,MAAMC,oBAAoB,GAAG,MAAM,IAAAC,qBAAU,EAAC,IAAI,CAACrC,WAAW,EAAGsC,UAAU,IACzE,IAAI,CAACvC,KAAK,CAACwC,OAAO,CAACC,SAAS,CAACF,UAAU,EAAE,IAAI,CAAC,CAC/C;IACD,MAAMG,WAAW,GAAGL,oBAAoB,CAACJ,GAAG,CAAEU,MAAM,IAAKA,MAAM,CAACF,SAAS,CAAC;IAC1E,MAAMG,OAAO,CAACC,GAAG,CAACH,WAAW,CAACT,GAAG,CAAEa,UAAU,IAAK,IAAI,CAAC9C,KAAK,CAACE,KAAK,CAAC6C,QAAQ,CAACD,UAAU,CAAC,CAAC,CAAC;IAEzF,MAAME,aAAa,GAAG,MAAM,IAAI,CAACC,iBAAiB,CAACxB,oBAAoB,EAAEE,sBAAsB,CAAC;IAChG,OAAO;MACLuB,WAAW,EAAEvB,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACC,SAAS,CAAC7B,EAAE,CAAC,CAAC8B,IAAI,EAAE;MACrEC,YAAY,EAAE3B,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACI,kBAAkB,CAAC,CAACF,IAAI,EAAE;MAC5EL;IACF,CAAC;EACH;EAEA,MAAMnC,wBAAwB,GAA0B;IAAA;IACtDQ,iBAAM,CAACC,KAAK,CAAE,kCAAiC,IAAI,CAACxB,OAAO,CAACY,GAAG,CAAC8C,IAAI,CAAC,IAAI,CAAE,EAAC,CAAC;IAC7E,MAAMrC,MAAc,GAAG,MAAM,IAAI,CAACC,SAAS,EAAE;IAC7C,MAAMK,oBAAoB,GAAG,MAAM,IAAI,CAACC,mBAAmB,CAACP,MAAM,CAAC;IACnE,MAAM,IAAI,CAACsC,wBAAwB,CAACtC,MAAM,CAAC;IAC3C,MAAMQ,sBAAsB,GAAG,MAAM,IAAI,CAACC,wBAAwB,CAACT,MAAM,EAAE;MACzEF,IAAI,uBAAE,IAAI,CAAChB,WAAW,sDAAhB,kBAAmB,CAAC;IAC5B,CAAC,CAAC;IACF,IAAI,IAAI,CAACA,WAAW,IAAI,IAAI,CAACH,OAAO,CAACiB,WAAW,EAAE;MAChD;MACA,MAAMsB,oBAAoB,GAAG,MAAM,IAAAC,qBAAU,EAAC,IAAI,CAACrC,WAAW,EAAGsC,UAAU,IACzE,IAAI,CAACvC,KAAK,CAACwC,OAAO,CAACC,SAAS,CAACF,UAAU,EAAE,IAAI,CAAC,CAC/C;MACD,MAAMG,WAAW,GAAGL,oBAAoB,CAACJ,GAAG,CAAEU,MAAM,IAAKA,MAAM,CAACF,SAAS,CAAC;MAC1E,MAAMG,OAAO,CAACC,GAAG,CAACH,WAAW,CAACT,GAAG,CAAEa,UAAU,IAAK,IAAI,CAAC9C,KAAK,CAACE,KAAK,CAAC6C,QAAQ,CAACD,UAAU,CAAC,CAAC,CAAC;IAC3F;IACA,IAAIY,iBAA8B,GAAG,EAAE;IACvC,IAAI,CAAC,IAAI,CAAC5D,OAAO,CAACiB,WAAW,EAAE;MAC7B,MAAM4C,0BAA0B,GAAG,MAAM,IAAAC,4DAAqC,EAC5EjC,sBAAsB,EACtB,IAAI,CAAC3B,KAAK,CAAC6D,OAAO,CACnB;MACD,MAAM,IAAI,CAACC,iBAAiB,CAACH,0BAA0B,CAAC;MACxD,IAAI,CAACI,wBAAwB,EAAE;MAC/B,MAAM,IAAI,CAACC,kBAAkB,CAACL,0BAA0B,CAAC;MACzD,MAAM,IAAI,CAACM,qBAAqB,CAACN,0BAA0B,CAAC;MAC5DD,iBAAiB,GAAGC,0BAA0B,CAAC1B,GAAG,CAAEiC,CAAC,IAAKA,CAAC,CAACd,SAAS,CAAC;IACxE;IAEA,MAAMJ,aAAa,GAAG,MAAM,IAAI,CAACC,iBAAiB,CAACxB,oBAAoB,EAAEE,sBAAsB,CAAC;IAChG,OAAO;MACLuB,WAAW,EAAEvB,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACC,SAAS,CAAC7B,EAAE,CAAC,CAAC8B,IAAI,EAAE;MACrEC,YAAY,EAAE3B,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACI,kBAAkB,CAAC,CAACF,IAAI,EAAE;MAC5EK,iBAAiB;MACjBV;IACF,CAAC;EACH;EAEA,MAAMc,iBAAiB,CAACH,0BAAuD,EAAE;IAC/E,IAAI,IAAI,CAAC7D,OAAO,CAACiB,WAAW,EAAE;MAC5B;MACA;MACA;IACF;IACA,MAAM6B,OAAO,CAACC,GAAG,CACfc,0BAA0B,CAAC1B,GAAG,CAAC,OAAO;MAAEmB;IAAU,CAAC,KAAK;MACtD,MAAMe,cAAc,GAAG,MAAM,IAAI,CAACnE,KAAK,CAACoE,iBAAiB,CAAChB,SAAS,CAAC7B,EAAE,CAAC;MACvE,MAAM4C,cAAc,CAACE,cAAc,CAAC,IAAI,CAACrE,KAAK,CAAC6D,OAAO,EAAE3C,SAAS,EAAE,KAAK,CAAC;MACzE,IAAI,CAACoD,WAAW,CAACC,IAAI,CAACJ,cAAc,CAAC;IACvC,CAAC,CAAC,CACH;EACH;EAEAJ,wBAAwB,GAAG;IACzB,IAAI,IAAI,CAACjE,OAAO,CAAC0E,KAAK,IAAI,IAAI,CAAC1E,OAAO,CAACiB,WAAW,EAAE;IACpD,MAAM0D,kBAAkB,GAAG,IAAI,CAACH,WAAW,CAACI,MAAM,CAAEP,cAAc,IAChEA,cAAc,CAACQ,cAAc,EAAE,CAACC,UAAU,EAAE,CAC7C;IACD,IAAIH,kBAAkB,CAAC9D,MAAM,EAAE;MAC7B,MAAM2D,WAAW,GAAGG,kBAAkB,CAACxC,GAAG,CAAEkC,cAAc,KAAM;QAC9D5C,EAAE,EAAE4C,cAAc,CAAC5C,EAAE,EAAE;QACvBsD,UAAU,EAAEV,cAAc,CAACQ,cAAc,EAAE,CAACG,iBAAiB,CAACnE,MAAM;QACpEoE,WAAW,EAAEZ,cAAc,CAACQ,cAAc,EAAE,CAACK,iBAAiB,CAACrE;MACjE,CAAC,CAAC,CAAC;MACH,MAAM,KAAIsE,iCAAsB,EAACX,WAAW,CAAC;IAC/C;EACF;EAEA,MAAc1C,wBAAwB,CACpClB,GAAW,EACX;IACEwE,iBAAiB,GAAG,KAAK;IACzBjE,IAAI;IACJmB,iBAAiB,GAAG;EAKtB,CAAC,EAC+B;IAChC,MAAM+C,uBAAuB,GAAGC,kCAAuB,CAACC,WAAW,CAAC,IAAI,CAACrF,KAAK,CAAC;IAC/E,MAAMmF,uBAAuB,CAACG,0BAA0B,CAAC;MACvD5E,GAAG;MACH6E,QAAQ,EAAE,IAAI,CAACzF,OAAO,CAAC0F,UAAU;MACjCC,cAAc,EAAE,IAAI,CAAC3F,OAAO,CAAC0F,UAAU;MACvCvE,IAAI;MACJ;MACA;MACAmB,iBAAiB,EAAE;IACrB,CAAC,CAAC;IACFhC,iBAAM,CAACC,KAAK,CAAE,UAASK,GAAG,CAACC,MAAO,kDAAiD,CAAC;IACpF,MAAM+E,OAAO,GAAGR,iBAAiB,GAC7B,MAAMC,uBAAuB,CAACQ,4BAA4B,CAACjF,GAAG,CAAC,GAC/D,MAAMyE,uBAAuB,CAACS,UAAU,CAAC;MACvClF,GAAG;MACH0B,iBAAiB;MACjBlC,KAAK,EAAEe,IAAI,GAAG,CAACA,IAAI,CAAC,GAAGC,SAAS;MAChC2E,qBAAqB,EAAE,CAAC,IAAI,CAAC/F,OAAO,CAACgG;IACvC,CAAC,CAAC;IAEN,OAAOJ,OAAO;EAChB;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAcK,iBAAiB,GAAqB;IAClD,IAAI,CAAC,IAAI,CAACjG,OAAO,CAACI,KAAK,EAAE;MACvB,MAAM,IAAIc,KAAK,CAAE,mDAAkD,CAAC;IACtE;IACA,MAAMgF,cAAc,GAAGlE,eAAM,CAACC,SAAS,CAAC,IAAI,CAAC9B,WAAW,CAACgG,OAAO,CAAEhF,IAAI,IAAKA,IAAI,CAACe,QAAQ,EAAE,CAAC,CAAC;IAE5F,IAAI,CAAC,IAAI,CAAClC,OAAO,CAACY,GAAG,CAACC,MAAM,EAAE;MAC5B,MAAMuF,OAAO,GAAG,IAAI,CAACnG,QAAQ,CAACoG,MAAM,CAACC,yCAAyC,EAAE;MAChF,MAAMC,eAAe,GAAGH,OAAO,CAACxB,MAAM,CAAEnD,EAAE,IAAKA,EAAE,CAAC+E,QAAQ,EAAE,IAAI,CAACN,cAAc,CAACO,iBAAiB,CAAChF,EAAE,CAAC,CAAC;MACtGyE,cAAc,CAACzB,IAAI,CAAC,GAAG8B,eAAe,CAAC;MACvC,OAAOL,cAAc;IACvB;IAEA,MAAMQ,eAAe,GAAG,IAAI,CAAC1G,OAAO,CAACY,GAAG,CAACgE,MAAM,CAAEnD,EAAE,IAAK,IAAAkF,sBAAW,EAAClF,EAAE,CAAC,CAAC;IACxE,MAAMmF,kBAAkB,GAAG,IAAI,CAAC5G,OAAO,CAACY,GAAG,CAACgE,MAAM,CAAEnD,EAAE,IAAK,CAAC,IAAAkF,sBAAW,EAAClF,EAAE,CAAC,CAAC;IAC5E,MAAMoF,gCAAgC,GAAGD,kBAAkB,CAACzE,GAAG,CAAE2E,KAAK,IAAK;MACzE,MAAMrF,EAAE,GAAGsF,cAAK,CAACC,KAAK,CAACF,KAAK,EAAE,IAAI,CAAC;MACnC,MAAMG,QAAQ,GAAGf,cAAc,CAACgB,oBAAoB,CAACzF,EAAE,CAAC;MACxD,OAAOwF,QAAQ,IAAIxF,EAAE;IACvB,CAAC,CAAC;IAEF,MAAMJ,MAAe,GAAG,CAAC,GAAGwF,gCAAgC,CAAC;IAE7D,IAAI,CAACH,eAAe,EAAE;MACpB,OAAOrF,MAAM;IACf;IAEA,MAAM,IAAAmB,qBAAU,EAACkE,eAAe,EAAE,MAAOI,KAAa,IAAK;MACzD,MAAMK,aAAa,GAAG,MAAM,IAAAC,uCAA0B,EAACN,KAAK,CAAC;MAC7D,MAAMO,eAAe,GAAGF,aAAa,CAACvC,MAAM,CAAEnD,EAAE,IAAKyE,cAAc,CAACO,iBAAiB,CAAChF,EAAE,CAAC,CAAC;MAC1F,IAAI,CAAC4F,eAAe,CAACxG,MAAM,EAAE;QAC3B,MAAM,KAAIyG,oBAAQ,EAAE,iCAAgCR,KAAM;AAClE,8CAA8C,IAAI,CAAC3G,WAAW,CAACgC,GAAG,CAAEoF,CAAC,IAAKA,CAAC,CAACC,IAAI,CAAC,CAAC9D,IAAI,CAAC,IAAI,CAAE;AAC7F;AACA,aAAayD,aAAa,CAAChF,GAAG,CAAEV,EAAE,IAAKA,EAAE,CAACgG,sBAAsB,EAAE,CAAC,CAAC/D,IAAI,CAAC,GAAG,CAAE,EAAC,CAAC;MAC1E;MACArC,MAAM,CAACoD,IAAI,CAAC,GAAG4C,eAAe,CAAC;IACjC,CAAC,CAAC;IAEF,OAAOhG,MAAM;EACf;EAEA,MAAcqG,oBAAoB,GAAG;IACnC,MAAMrG,MAAe,GAAG,EAAE;IAC1B,MAAMyB,OAAO,CAACC,GAAG,CACf,IAAI,CAAC/C,OAAO,CAACY,GAAG,CAACuB,GAAG,CAAC,MAAO2E,KAAa,IAAK;MAC5C,IAAI,IAAAH,sBAAW,EAACG,KAAK,CAAC,EAAE;QACtB,MAAMlG,GAAG,GAAG,MAAM,IAAAwG,uCAA0B,EAACN,KAAK,CAAC;QACnDxG,iBAAM,CAACC,KAAK,CAACC,sCAAoB,CAAC,CAAC,CAAC;QACpCa,MAAM,CAACoD,IAAI,CAAC,GAAG7D,GAAG,CAAC;MACrB,CAAC,MAAM;QACLS,MAAM,CAACoD,IAAI,CAACsC,cAAK,CAACC,KAAK,CAACF,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;MACzC;IACF,CAAC,CAAC,CACH;;IAED,OAAOzF,MAAM;EACf;EAEA,MAAcC,SAAS,GAAoB;IACzC,MAAMD,MAAe,GAAG,IAAI,CAACrB,OAAO,CAACI,KAAK,GAAG,MAAM,IAAI,CAAC6F,iBAAiB,EAAE,GAAG,MAAM,IAAI,CAACyB,oBAAoB,EAAE;IAC/G,IAAI,IAAI,CAAC1H,OAAO,CAAC2H,0BAA0B,IAAI,IAAI,CAAC3H,OAAO,CAAC4H,gBAAgB,EAAE;MAC5E,MAAMC,MAAM,GAAG,MAAM,IAAI,CAACC,oBAAoB,CAACzG,MAAM,CAAC;MACtD,IAAI,IAAI,CAACrB,OAAO,CAAC2H,0BAA0B,EAAE;QAC3C,MAAMI,eAAe,GAAG,IAAI,CAACC,yBAAyB,CAAC3G,MAAM,EAAEwG,MAAM,CAAC;QACtExG,MAAM,CAACoD,IAAI,CAAC,GAAGsD,eAAe,CAAC;MACjC;MACA,IAAI,IAAI,CAAC/H,OAAO,CAAC4H,gBAAgB,EAAE;QACjC,MAAM9H,KAAK,GAAG,MAAM,IAAI,CAACA,KAAK,CAACmI,WAAW,EAAE;QAC5C,MAAMC,aAAa,GAAG,MAAM,IAAI,CAACrI,SAAS,CAACsI,2BAA2B,CAAC9G,MAAM,CAAC;QAC9E,MAAM+G,SAAS,GAAG,MAAM,IAAI,CAACvI,SAAS,CAACwI,OAAO,EAAE;QAChD,MAAMzH,GAAG,GAAGd,KAAK,CAACwI,2BAA2B,CAACF,SAAS,EAAEF,aAAa,CAAC;QACvE3G,iBAAM,CAACC,KAAK,CACT,SAAQZ,GAAG,CAACC,MAAO,kCAAiC,EACrDD,GAAG,CAACuB,GAAG,CAAEV,EAAE,IAAKA,EAAE,CAACC,QAAQ,EAAE,CAAC,CAC/B;QACDL,MAAM,CAACoD,IAAI,CAAC,GAAG7D,GAAG,CAACuB,GAAG,CAAEV,EAAE,IAAKA,EAAE,CAAC8G,OAAO,CAAC,CAAC;MAC7C;IACF;IACA,OAAOvG,eAAM,CAACwG,aAAa,CAACnH,MAAM,CAAC;EACrC;EAEA2G,yBAAyB,CAAC3G,MAAe,EAAEwG,MAAyB,EAAW;IAC7E,MAAMY,YAAY,GAAGpH,MAAM,CAACc,GAAG,CAAEuG,KAAK,IAAK;MACzC,MAAMC,cAAc,GAAGd,MAAM,CAACe,IAAI,CAAE9I,KAAK,IAAKA,KAAK,CAAC+I,SAAS,KAAKH,KAAK,CAACxI,KAAK,CAAC;MAC9E,IAAI,CAACyI,cAAc,EAAE;QACnB,MAAM,IAAIzH,KAAK,CAAE,8BAA6BwH,KAAK,CAAChH,QAAQ,EAAG,EAAC,CAAC;MACnE;MACA,MAAMoH,gBAAgB,GAAGH,cAAc,CAACI,mBAAmB,CAACL,KAAK,CAAC;MAClE,OAAOI,gBAAgB,CAAC3G,GAAG,CAAE6G,CAAC,IAAKA,CAAC,CAACvH,EAAE,CAAC;IAC1C,CAAC,CAAC;IACF,OAAOwH,gBAAC,CAACC,OAAO,CAACT,YAAY,CAAC;EAChC;EAEAU,uBAAuB,CAAC9H,MAAe,EAAEwG,MAAyB,EAAW;IAC3E,MAAMuB,UAAU,GAAG/H,MAAM,CAACc,GAAG,CAAEuG,KAAK,IAAK;MACvC,MAAMC,cAAc,GAAGd,MAAM,CAACe,IAAI,CAAE9I,KAAK,IAAKA,KAAK,CAAC+I,SAAS,KAAKH,KAAK,CAACxI,KAAK,CAAC;MAC9E,IAAI,CAACyI,cAAc,EAAE;QACnB,MAAM,IAAIzH,KAAK,CAAE,8BAA6BwH,KAAK,CAAChH,QAAQ,EAAG,EAAC,CAAC;MACnE;MACA,MAAM2H,cAAc,GAAGV,cAAc,CAACW,iBAAiB,CAACZ,KAAK,CAAC;MAC9D,OAAOW,cAAc,CAAClH,GAAG,CAAE6G,CAAC,IAAKA,CAAC,CAACvH,EAAE,CAAC;IACxC,CAAC,CAAC;IACF,OAAOwH,gBAAC,CAACC,OAAO,CAACE,UAAU,CAAC;EAC9B;EAEA,MAAMtB,oBAAoB,CAACzG,MAAe,EAA8B;IACtE,MAAMkI,OAAgB,GAAG,MAAM,IAAAC,+BAAe,EAAC,IAAI,CAACvJ,QAAQ,CAACC,KAAK,CAAC;IACnE,OAAOqJ,OAAO,CAACE,WAAW,CAACpI,MAAM,EAAE,IAAI,CAACpB,QAAQ,CAACC,KAAK,CAAC;EACzD;EAEA,MAAMc,uBAAuB,GAA0B;IACrD,IAAI,CAAChB,OAAO,CAACiB,WAAW,GAAG,CAAC,IAAI,CAACjB,OAAO,CAAC0E,KAAK,IAAI,CAAC,IAAI,CAAC1E,OAAO,CAAC0J,QAAQ;IACxE,MAAMC,qBAAqB,GAAG,IAAI,CAACC,wBAAwB,EAAE;IAE7D,IAAIX,gBAAC,CAACY,OAAO,CAACF,qBAAqB,CAAC,EAAE;MACpC,MAAM,KAAIG,6BAAe,GAAE;IAC7B;IACA,MAAM,IAAI,CAACC,gCAAgC,CAACJ,qBAAqB,CAAC;IAClE,MAAMhI,oBAAoB,GAAG,MAAM,IAAI,CAACC,mBAAmB,CAAC+H,qBAAqB,CAAC;IAClF,IAAI,CAACA,qBAAqB,CAAC9I,MAAM,EAAE;MACjC,OAAO;QACLuC,WAAW,EAAE,EAAE;QACfI,YAAY,EAAE,EAAE;QAChBN,aAAa,EAAE;MACjB,CAAC;IACH;IACA,IAAI,CAAC,IAAI,CAAClD,OAAO,CAACiB,WAAW,EAAE;MAC7B,MAAM,IAAIC,KAAK,CAAE,iEAAgE,CAAC;IACpF;IACA,MAAMW,sBAAsB,GAAG,MAAM,IAAI,CAACC,wBAAwB,CAAC6H,qBAAqB,EAAE;MACxFvE,iBAAiB,EAAE,IAAI,CAACpF,OAAO,CAACoF;IAClC,CAAC,CAAC;IACF,IAAIxB,iBAA8B,GAAG,EAAE;IACvC,IAAI,CAAC,IAAI,CAAC5D,OAAO,CAACiB,WAAW,EAAE;MAC7B,MAAM+I,yBAAyB,GAAG,MAAM,IAAAlG,4DAAqC,EAC3EjC,sBAAsB,EACtB,IAAI,CAAC3B,KAAK,CAAC6D,OAAO,CACnB;MACD,MAAM,IAAI,CAACG,kBAAkB,CAAC8F,yBAAyB,CAAC;MACxDpG,iBAAiB,GAAGoG,yBAAyB,CAAC7H,GAAG,CAAEiC,CAAC,IAAKA,CAAC,CAACd,SAAS,CAAC;IACvE;IAEA,MAAMJ,aAAa,GAAG,MAAM,IAAI,CAACC,iBAAiB,CAACxB,oBAAoB,EAAEE,sBAAsB,CAAC;IAEhG,OAAO;MACLuB,WAAW,EAAEvB,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACC,SAAS,CAAC7B,EAAE,CAAC,CAAC8B,IAAI,EAAE;MACrEC,YAAY,EAAE3B,sBAAsB,CAACM,GAAG,CAAEkB,CAAC,IAAKA,CAAC,CAACI,kBAAkB,CAAC,CAACF,IAAI,EAAE;MAC5EK,iBAAiB;MACjBV;IACF,CAAC;EACH;EAEQ0G,wBAAwB,GAAG;IACjC,MAAMK,MAAM,GAAG,IAAI,CAAChK,QAAQ,CAACoG,MAAM,CAAC6D,wBAAwB,EAAE;IAC9D,OAAOlI,eAAM,CAACC,SAAS,CAACgI,MAAM,CAACrF,MAAM,CAAEnD,EAAE,IAAKA,EAAE,CAAC+E,QAAQ,EAAE,CAAC,CAAC;EAC/D;EAEA,MAAM5E,mBAAmB,CAAChB,GAAW,EAA6B;IAChE,MAAMuJ,SAAS,GAAGvJ,GAAG,CAACuB,GAAG,CAAC,MAAOV,EAAE,IAAK;MACtC,MAAM4C,cAAc,GAAG,MAAM,IAAI,CAACpE,QAAQ,CAACC,KAAK,CAACkK,wBAAwB,CAAC3I,EAAE,CAACY,aAAa,CAACjB,SAAS,CAAC,CAAC;MACtG,MAAM0F,KAAK,GAAGrF,EAAE,CAACgG,sBAAsB,EAAE;MACzC,IAAI,CAACpD,cAAc,EAAE,OAAO,CAACyC,KAAK,EAAE,EAAE,CAAC;MACvC,OAAO,CAACA,KAAK,EAAEzC,cAAc,CAACgG,YAAY,EAAE,CAAC;IAC/C,CAAC,CAAC;IACF,MAAMC,QAAQ,GAAG,MAAMxH,OAAO,CAACC,GAAG,CAACoH,SAAS,CAAC;IAC7C,OAAOlB,gBAAC,CAACsB,SAAS,CAACD,QAAQ,CAAC;EAC9B;;EAEA;AACF;AACA;EACE,MAAMnH,iBAAiB,CACrBqH,eAAiC,EACjCC,UAAiC,EACP;IAC1B,MAAMC,QAAQ,GAAGD,UAAU,CAACtI,GAAG,CAAC,MAAOmB,SAAS,IAAK;MACnD,MAAM7B,EAAE,GAAG6B,SAAS,CAACA,SAAS,CAAC7B,EAAE;MACjC,MAAMqF,KAAK,GAAGrF,EAAE,CAACgG,sBAAsB,EAAE;MACzC,MAAM9F,oBAAoB,GAAG6I,eAAe,CAAC1D,KAAK,CAAC;MACnD,IAAI,CAACnF,oBAAoB,EAAE;QACzB,MAAM,IAAIT,KAAK,CACZ,oCAAmC4F,KAAM,kCAAiC6D,MAAM,CAACC,IAAI,CAACJ,eAAe,CAAC,CAAC9G,IAAI,CAC1G,IAAI,CACJ,EAAC,CACJ;MACH;MACA,MAAMW,cAAc,GAAG,MAAM,IAAI,CAACpE,QAAQ,CAACC,KAAK,CAACkK,wBAAwB,CAAC3I,EAAE,CAAC;MAC7E,IAAI,CAAC4C,cAAc,EAAE,MAAM,KAAIwG,0BAAe,EAAE,sBAAqB/D,KAAM,6BAA4B,CAAC;MACxG,MAAMgE,mBAAmB,GAAGzG,cAAc,CAACgG,YAAY,EAAE;MACzD,MAAMU,iBAA2B,GAAG9B,gBAAC,CAAC+B,UAAU,CAACF,mBAAmB,EAAEnJ,oBAAoB,CAAC;MAC3F,MAAMsJ,SAAS,GAAG,MAAoB;QACpC,IAAI,CAACF,iBAAiB,CAAClK,MAAM,EAAE,OAAO,YAAY;QAClD,IAAI,CAACc,oBAAoB,CAACd,MAAM,EAAE,OAAO,OAAO;QAChD,OAAO,SAAS;MAClB,CAAC;MACD,MAAMqK,WAAW,GAAG,IAAI,CAACC,WAAW,IAAI,IAAI,CAACA,WAAW,CAACrE,KAAK,CAAC,GAAG,IAAI,CAACqE,WAAW,CAACrE,KAAK,CAAC,GAAG,IAAI;MAChG,MAAMsE,UAAU,GAAG,MAAM/G,cAAc,CAACgH,YAAY,CAAC,IAAI,CAACnL,KAAK,CAAC6D,OAAO,CAAC;MACxE,MAAMuH,OAAO,GAAG,MAAMhI,SAAS,CAACA,SAAS,CAACA,SAAS,CAACiI,SAAS,CAAC,IAAI,CAACrL,KAAK,CAAC6D,OAAO,CAAC;MACjF,MAAMyH,aAAa,GAAGnH,cAAc,CAACoH,kCAAkC,CAAC,IAAI,CAAC;MAC7E,OAAO;QACLhK,EAAE,EAAEqF,KAAK;QACTwD,QAAQ,EAAES,iBAAiB;QAC3BS,aAAa,EAAET,iBAAiB,CAACW,QAAQ,CAACF,aAAa,CAAC,GAAGA,aAAa,GAAG,IAAI;QAC/EG,MAAM,EAAEV,SAAS,EAAE;QACnBC,WAAW;QACXU,WAAW,EAAE,IAAI,CAAC5L,OAAO,CAACgG,SAAS,GAAG1C,SAAS,CAACuI,sBAAsB,EAAE,GAAG,EAAE;QAC7ET,UAAU;QACVE;MACF,CAAC;IACH,CAAC,CAAC;IACF,OAAOxI,OAAO,CAACC,GAAG,CAAC2H,QAAQ,CAAC;EAC9B;EAEA,MAAM/G,wBAAwB,CAAC/C,GAAW,EAAiB;IACzD,MAAM,IAAI,CAACmJ,gCAAgC,CAACnJ,GAAG,CAAC;IAChD,IAAI,CAACkL,uCAAuC,CAAClL,GAAG,CAAC;EACnD;EAEA,MAAMmJ,gCAAgC,CAACnJ,GAAW,EAAiB;IACjE;IACA;IACA;IACA,IAAI,IAAI,CAACZ,OAAO,CAAC0J,QAAQ,IAAI,IAAI,CAAC1J,OAAO,CAACiB,WAAW,IAAI,IAAI,CAACjB,OAAO,CAAC0E,KAAK,EAAE;IAC7E,MAAMqH,kBAAkB,GAAG,MAAM,IAAI,CAAC9L,QAAQ,CAAC+L,yBAAyB,CAACpL,GAAG,CAAC;IAC7E,MAAMqL,kBAAkB,GAAGF,kBAAkB,CAC1CnH,MAAM,CAAC,CAAC;MAAE+G;IAAO,CAAC,KAAKA,MAAM,CAACO,QAAQ,IAAIP,MAAM,CAACQ,YAAY,CAAC,CAC9DhK,GAAG,CAAEiC,CAAC,IAAKA,CAAC,CAAC3C,EAAE,CAAC;IACnB,IAAIwK,kBAAkB,CAACpL,MAAM,EAAE;MAC7B,MAAM,KAAIuL,uBAAY,EACpBC,gBAAK,CAACC,MAAM,CACT,gJAA+IL,kBAAkB,CAACvI,IAAI,CACrK,IAAI,CACJ,GAAE,CACL,CACF;IACH;EACF;;EAEA;AACF;AACA;AACA;AACA;EACEoI,uCAAuC,CAAClL,GAAW,EAAQ;IACzDA,GAAG,CAAC2L,OAAO,CAAE9K,EAAS,IAAK;MACzB,MAAM+K,UAAU,GAAG,IAAI,CAACvM,QAAQ,CAACwM,kBAAkB,CAAChL,EAAE,CAACgG,sBAAsB,EAAE,CAAC;MAChF,IAAI+E,UAAU,IAAI,CAACA,UAAU,CAAChG,QAAQ,EAAE,EAAE;QACxC,MAAM,KAAI4F,uBAAY,EAAE,oBAAmB3K,EAAE,CAACC,QAAQ,EAAG;AACjE;AACA,6FAA6F,CAAC;MACxF;IACF,CAAC,CAAC;EACJ;EAEA,MAAMgL,eAAe,CAAC1C,yBAAoD,EAAiC;IACzG,MAAM1G,SAAS,GAAG0G,yBAAyB,CAAC1G,SAAS;IACrD,MAAMqJ,eAAe,GAAG,MAAM,IAAI,CAAC1M,QAAQ,CAAC2M,sBAAsB,CAACtJ,SAAS,CAAC7B,EAAE,CAAC;IAChF,MAAM0J,WAAiC,GAAG;MAAEnB,yBAAyB;MAAE6C,YAAY,EAAE;IAAK,CAAC;IAC3F,IAAI,CAACF,eAAe,CAACT,QAAQ,EAAE,OAAOf,WAAW;IACjD,MAAM2B,cAAc,GAAG,MAAM,IAAI,CAAC7M,QAAQ,CAACC,KAAK,CAACoE,iBAAiB,CAAChB,SAAS,CAAC7B,EAAE,CAAC;IAChF,MAAMsL,mBAAmB,GAAG,IAAI,CAAC9M,QAAQ,CAACoG,MAAM,CAAC2G,QAAQ,CAAC1J,SAAS,CAAC7B,EAAE,EAAE;MAAEwL,aAAa,EAAE;IAAK,CAAC,CAAC;IAChG,MAAMC,WAAW,GAAG,MAAM,IAAI,CAACjN,QAAQ,CAACkN,aAAa,CAACJ,mBAAmB,CAAC;IAC1E,MAAMK,oBAAoB,GAAGL,mBAAmB,CAACM,OAAO;IACxD;IACA,MAAMC,aAAsB,GAAG,MAAMR,cAAc,CAACS,WAAW,CAACH,oBAAoB,EAAE,IAAI,CAACnN,QAAQ,CAACC,KAAK,CAAC6D,OAAO,CAAC;IAClH,MAAMyJ,cAAuB,GAAG,MAAMV,cAAc,CAACS,WAAW;IAC9D;IACAjK,SAAS,CAAC7B,EAAE,CAAC4L,OAAO,EACpB,IAAI,CAACpN,QAAQ,CAACC,KAAK,CAAC6D,OAAO,CAC5B;IACD,MAAM8I,YAAY,GAAG,MAAM,IAAAY,6BAAa,EAAC;MACvCxN,QAAQ,EAAE,IAAI,CAACA,QAAQ;MACvBuN,cAAc;MACdE,UAAU,EAAEpK,SAAS,CAAC7B,EAAE,CAAC4L,OAAiB;MAC1CM,gBAAgB,EAAET,WAAW;MAC7BU,YAAY,EAAG,GAAER,oBAAqB,WAAU;MAChDE;IACF,CAAC,CAAC;IACFnC,WAAW,CAAC0B,YAAY,GAAGA,YAAY;IACvC,OAAO1B,WAAW;EACpB;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE0C,qCAAqC,CAACC,oBAA0C,EAAkC;IAChH,MAAMjB,YAAY,GAAGiB,oBAAoB,CAACjB,YAAY;IACtD,IAAI,CAACA,YAAY,EAAE,OAAO,IAAI;IAC9B,MAAMvJ,SAAS,GAAGwK,oBAAoB,CAAC9D,yBAAyB,CAAC1G,SAAS;IAC1E,MAAMyK,KAAK,GAAGzK,SAAS,CAACyK,KAAK;IAE7B,IAAIlB,YAAY,CAACmB,YAAY,IAAI,IAAI,CAAChO,OAAO,CAACiO,aAAa,KAAKC,4BAAY,CAACC,IAAI,EAAE;MACjF,MAAMjD,WAAW,GAAG,CAAC,CAAC;MACtB;MACA6C,KAAK,CAACxB,OAAO,CAAE6B,IAAI,IAAK;QACtB;QACAlD,WAAW,CAAC,IAAAmD,6BAAoB,EAACD,IAAI,CAACE,QAAQ,CAAC,CAAC,GAAGC,0BAAU,CAACC,SAAS;MACzE,CAAC,CAAC;MACF,IAAI,CAACvO,QAAQ,CAACoG,MAAM,CAACoI,iBAAiB,CAACnL,SAAS,CAAC7B,EAAE,CAAC;MACpD,IAAI,CAACxB,QAAQ,CAACoG,MAAM,CAACqI,UAAU,GAAG,IAAI;MACtC,OAAOxD,WAAW;IACpB;IACA,IAAI2B,YAAY,CAACmB,YAAY,IAAI,IAAI,CAAChO,OAAO,CAACiO,aAAa,KAAKC,4BAAY,CAACS,MAAM,EAAE;MACnF,MAAMzD,WAAW,GAAG,CAAC,CAAC;MACtB;MACA6C,KAAK,CAACxB,OAAO,CAAE6B,IAAI,IAAK;QACtB;QACAlD,WAAW,CAAC,IAAAmD,6BAAoB,EAACD,IAAI,CAACE,QAAQ,CAAC,CAAC,GAAGC,0BAAU,CAACK,OAAO;MACvE,CAAC,CAAC;MACF,OAAO1D,WAAW;IACpB;IACA,MAAM;MAAEA,WAAW;MAAE2D;IAAc,CAAC,GAAG,IAAAC,uCAAoB,EACzDxL,SAAS,CAACyK,KAAK,EACflB,YAAY,EACZ,IAAI,CAAC7M,OAAO,CAACiO,aAAa,CAC3B;IACD3K,SAAS,CAACyK,KAAK,GAAGc,aAAa;IAE/B,OAAO3D,WAAW;EACpB;;EAEA;AACF;AACA;AACA;EACE,MAAM6D,2CAA2C,CAC/ClL,0BAAuD,EACjB;IACtC,IAAI,CAAC,IAAI,CAAC7D,OAAO,CAAC0E,KAAK,EAAE,OAAOb,0BAA0B;IAC1D,MAAMmL,iBAAiB,GAAGnL,0BAA0B,CAAC1B,GAAG,CAAE6H,yBAAoD,IAAK;MACjH,OAAO,IAAI,CAAC0C,eAAe,CAAC1C,yBAAyB,CAAC;IACxD,CAAC,CAAC;IACF,MAAMiF,gBAAgB,GAAG,MAAMnM,OAAO,CAACC,GAAG,CAACiM,iBAAiB,CAAC;IAC7D,MAAME,qBAAqB,GAAGD,gBAAgB,CAACrG,IAAI,CAChDtF,SAAS,IAAKA,SAAS,CAACuJ,YAAY,IAAIvJ,SAAS,CAACuJ,YAAY,CAACmB,YAAY,CAC7E;IACD,IAAIkB,qBAAqB,IAAI,CAAC,IAAI,CAAClP,OAAO,CAACiO,aAAa,EAAE;MACxD,IAAI,CAACjO,OAAO,CAACiO,aAAa,GAAG,MAAM,IAAAkB,2CAA2B,GAAE;IAClE;IACA,IAAI,CAAChE,WAAW,GAAG,CAAC,CAAC;IAErB,MAAMiE,iBAAiB,GAAGH,gBAAgB,CAAC9M,GAAG,CAAEwK,eAAe,IAAK;MAClE,MAAMzB,WAA2C,GAAG,IAAI,CAAC2C,qCAAqC,CAAClB,eAAe,CAAC;MAC/G,MAAM3C,yBAAyB,GAAG2C,eAAe,CAAC3C,yBAAyB;MAC3E,IAAI,CAACkB,WAAW,EAAE,OAAOlB,yBAAyB;MAClD,IAAI,CAACmB,WAAW,CAACnB,yBAAyB,CAAC1G,SAAS,CAAC7B,EAAE,CAACgG,sBAAsB,EAAE,CAAC,GAAGyD,WAAW;MAC/F,MAAMmE,cAAc,GAAG1E,MAAM,CAACC,IAAI,CAACM,WAAW,CAAC,CAACtG,MAAM,CAAEwJ,IAAI,IAAKlD,WAAW,CAACkD,IAAI,CAAC,KAAKG,0BAAU,CAACC,SAAS,CAAC;MAC5G,IAAIa,cAAc,CAACxO,MAAM,KAAK8J,MAAM,CAACC,IAAI,CAACM,WAAW,CAAC,CAACrK,MAAM,EAAE;QAC7D;QACA,OAAO,IAAI;MACb;MACA,OAAOmJ,yBAAyB;IAClC,CAAC,CAAC;IACF,MAAMsF,WAAW,GAAGrG,gBAAC,CAACsG,MAAM,CAACtG,gBAAC,CAACuG,KAAK,CAAC;IACrC,OAAOF,WAAW,CAACF,iBAAiB,CAAC;EACvC;EAEAK,mBAAmB,GAAY;IAC7B,IAAI,IAAI,CAACzP,OAAO,CAACiB,WAAW,EAAE;MAC5B,OAAO,KAAK;IACd;IACA,OAAO,IAAI,CAAChB,QAAQ,CAACyP,QAAQ,EAAE;EACjC;EAEA,MAAMvL,qBAAqB,CAACN,0BAAuD,EAAiB;IAClG,IAAI,CAAC,IAAI,CAAC4L,mBAAmB,EAAE,EAAE;MAC/B;IACF;IACA,MAAME,WAAW,GAAG,MAAM,IAAI,CAAC1P,QAAQ,CAAC2P,oBAAoB,EAAE;IAC9D,IAAI,CAACD,WAAW,EAAE;MAChB,OAAO,CAAC;IACV;;IACA,MAAME,kBAAkB,GAAG7N,eAAM,CAACC,SAAS,CAAC,IAAI,CAAC9B,WAAW,CAACgG,OAAO,CAAEhF,IAAI,IAAKA,IAAI,CAACe,QAAQ,EAAE,CAAC,CAAC;IAChG,MAAMuI,UAAU,GAAG5G,0BAA0B,CAAC1B,GAAG,CAAEiC,CAAC,IAAKA,CAAC,CAACd,SAAS,CAAC;IACrE,MAAMR,OAAO,CAACC,GAAG,CACf0H,UAAU,CAACtI,GAAG,CAAC,MAAO2N,IAAI,IAAK;MAC7B,MAAMC,iBAAiB,GAAGF,kBAAkB,CAACG,GAAG,CAACF,IAAI,CAACrO,EAAE,CAAC;MACzD,IAAI,CAACsO,iBAAiB,IAAI,CAAC,IAAI,CAAC/P,OAAO,CAACiQ,UAAU,EAAE;QAClD,IAAI,CAAChQ,QAAQ,CAACoG,MAAM,CAAC6J,gBAAgB,CAACJ,IAAI,CAACrO,EAAE,EAAE,aAAa,EAAE,KAAK,CAAC;QACpE;MACF;MACA,MAAM4C,cAAc,GAAG,MAAM,IAAI,CAACnE,KAAK,CAACoE,iBAAiB,CAACwL,IAAI,CAACrO,EAAE,CAAC;MAClE,MAAM0O,GAAG,GAAG9L,cAAc,CAAC+L,MAAM,CAACN,IAAI,CAACrO,EAAE,CAAC4L,OAAO,CAAW;MAC5D,IAAI,CAAC8C,GAAG,EAAE,MAAM,IAAIjP,KAAK,CAAE,+CAA8C4O,IAAI,CAACrO,EAAE,CAACC,QAAQ,EAAG,EAAC,CAAC;MAC9FiO,WAAW,CAACU,YAAY,CAAC;QAAE5O,EAAE,EAAEqO,IAAI,CAACrO,EAAE;QAAE6O,IAAI,EAAEH;MAAI,CAAC,CAAC;IACtD,CAAC,CAAC,CACH;IACD,MAAM,IAAI,CAACjQ,KAAK,CAACE,KAAK,CAAC6C,QAAQ,CAAC0M,WAAW,CAAC;EAC9C;EAEA,MAAMzL,kBAAkB,CAACL,0BAAuD,EAAE;IAChF,IAAI,IAAI,CAAC7D,OAAO,CAACiB,WAAW,EAAE;MAC5B;IACF;IACA,MAAMmO,iBAAiB,GAAG,MAAM,IAAI,CAACL,2CAA2C,CAAClL,0BAA0B,CAAC;IAC5G,MAAM0M,wBAAwB,GAAG;MAC/BtQ,QAAQ,EAAE,IAAI,CAACA,QAAQ;MACvB4D,0BAA0B,EAAEuL,iBAAiB;MAC7CoB,WAAW,EAAE,IAAI,CAACxQ,OAAO,CAACwQ,WAAW;MACrCC,WAAW,EAAE,IAAI,CAACzQ,OAAO,CAACyQ,WAAW;MACrCC,kBAAkB,EAAE,IAAI,CAAC1Q,OAAO,CAAC0Q,kBAAkB;MACnDC,OAAO,EAAE,IAAI,CAAC3Q,OAAO,CAAC2Q,OAAO;MAC7BjH,QAAQ,EAAE,IAAI,CAAC1J,OAAO,CAAC0J;IACzB,CAAC;IACD,MAAM,IAAI,CAAC3J,eAAe,CAAC6Q,SAAS,CAACL,wBAAwB,CAAC;EAChE;AACF;AAAC"}
|
|
@@ -2,8 +2,11 @@ import { CLIMain } from '@teambit/cli';
|
|
|
2
2
|
import { DependencyResolverMain } from '@teambit/dependency-resolver';
|
|
3
3
|
import { Workspace } from '@teambit/workspace';
|
|
4
4
|
import type { CommunityMain } from '@teambit/community';
|
|
5
|
+
import { ComponentWriterMain } from '@teambit/component-writer';
|
|
6
|
+
import { Logger, LoggerMain } from '@teambit/logger';
|
|
5
7
|
import { ScopeMain } from '@teambit/scope';
|
|
6
8
|
import { LaneId } from '@teambit/lane-id';
|
|
9
|
+
import { InstallMain } from '@teambit/install';
|
|
7
10
|
import { Lane } from '@teambit/legacy/dist/scope/models';
|
|
8
11
|
import { GraphMain } from '@teambit/graph';
|
|
9
12
|
import { ImportOptions, ImportResult } from './import-components';
|
|
@@ -12,8 +15,11 @@ export declare class ImporterMain {
|
|
|
12
15
|
private depResolver;
|
|
13
16
|
private graph;
|
|
14
17
|
private scope;
|
|
15
|
-
|
|
18
|
+
private componentWriter;
|
|
19
|
+
private logger;
|
|
20
|
+
constructor(workspace: Workspace, depResolver: DependencyResolverMain, graph: GraphMain, scope: ScopeMain, componentWriter: ComponentWriterMain, logger: Logger);
|
|
16
21
|
import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult>;
|
|
22
|
+
importObjects(): Promise<void>;
|
|
17
23
|
/**
|
|
18
24
|
* @todo: combine with this.import()
|
|
19
25
|
*/
|
|
@@ -35,12 +41,15 @@ export declare class ImporterMain {
|
|
|
35
41
|
static slots: never[];
|
|
36
42
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
37
43
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
38
|
-
static provider([cli, workspace, depResolver, community, graph, scope]: [
|
|
44
|
+
static provider([cli, workspace, depResolver, community, graph, scope, componentWriter, install, loggerMain]: [
|
|
39
45
|
CLIMain,
|
|
40
46
|
Workspace,
|
|
41
47
|
DependencyResolverMain,
|
|
42
48
|
CommunityMain,
|
|
43
49
|
GraphMain,
|
|
44
|
-
ScopeMain
|
|
50
|
+
ScopeMain,
|
|
51
|
+
ComponentWriterMain,
|
|
52
|
+
InstallMain,
|
|
53
|
+
LoggerMain
|
|
45
54
|
]): Promise<ImporterMain>;
|
|
46
55
|
}
|
|
@@ -63,8 +63,15 @@ function _legacyBitId() {
|
|
|
63
63
|
};
|
|
64
64
|
return data;
|
|
65
65
|
}
|
|
66
|
+
function _componentWriter() {
|
|
67
|
+
const data = _interopRequireDefault(require("@teambit/component-writer"));
|
|
68
|
+
_componentWriter = function () {
|
|
69
|
+
return data;
|
|
70
|
+
};
|
|
71
|
+
return data;
|
|
72
|
+
}
|
|
66
73
|
function _logger() {
|
|
67
|
-
const data =
|
|
74
|
+
const data = require("@teambit/logger");
|
|
68
75
|
_logger = function () {
|
|
69
76
|
return data;
|
|
70
77
|
};
|
|
@@ -91,6 +98,13 @@ function _scopeComponentsImporter() {
|
|
|
91
98
|
};
|
|
92
99
|
return data;
|
|
93
100
|
}
|
|
101
|
+
function _install() {
|
|
102
|
+
const data = _interopRequireDefault(require("@teambit/install"));
|
|
103
|
+
_install = function () {
|
|
104
|
+
return data;
|
|
105
|
+
};
|
|
106
|
+
return data;
|
|
107
|
+
}
|
|
94
108
|
function _loader() {
|
|
95
109
|
const data = _interopRequireDefault(require("@teambit/legacy/dist/cli/loader"));
|
|
96
110
|
_loader = function () {
|
|
@@ -98,6 +112,13 @@ function _loader() {
|
|
|
98
112
|
};
|
|
99
113
|
return data;
|
|
100
114
|
}
|
|
115
|
+
function _exceptions() {
|
|
116
|
+
const data = require("@teambit/legacy/dist/consumer/exceptions");
|
|
117
|
+
_exceptions = function () {
|
|
118
|
+
return data;
|
|
119
|
+
};
|
|
120
|
+
return data;
|
|
121
|
+
}
|
|
101
122
|
function _scopeNotFoundOrDenied() {
|
|
102
123
|
const data = require("@teambit/legacy/dist/remotes/exceptions/scope-not-found-or-denied");
|
|
103
124
|
_scopeNotFoundOrDenied = function () {
|
|
@@ -157,11 +178,13 @@ function _importComponents() {
|
|
|
157
178
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
158
179
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
159
180
|
class ImporterMain {
|
|
160
|
-
constructor(workspace, depResolver, graph, scope) {
|
|
181
|
+
constructor(workspace, depResolver, graph, scope, componentWriter, logger) {
|
|
161
182
|
this.workspace = workspace;
|
|
162
183
|
this.depResolver = depResolver;
|
|
163
184
|
this.graph = graph;
|
|
164
185
|
this.scope = scope;
|
|
186
|
+
this.componentWriter = componentWriter;
|
|
187
|
+
this.logger = logger;
|
|
165
188
|
}
|
|
166
189
|
async import(importOptions, packageManagerArgs) {
|
|
167
190
|
if (!this.workspace) throw new (_workspace().OutsideWorkspaceError)();
|
|
@@ -188,7 +211,7 @@ class ImporterMain {
|
|
|
188
211
|
};
|
|
189
212
|
}
|
|
190
213
|
}
|
|
191
|
-
const importComponents = new (_importComponents().default)(this.workspace, this.graph, importOptions);
|
|
214
|
+
const importComponents = new (_importComponents().default)(this.workspace, this.graph, this.componentWriter, importOptions);
|
|
192
215
|
const results = await importComponents.importComponents();
|
|
193
216
|
_analytics().Analytics.setExtraData('num_components', results.importedIds.length);
|
|
194
217
|
if (results.writtenComponents && results.writtenComponents.length) {
|
|
@@ -197,13 +220,29 @@ class ImporterMain {
|
|
|
197
220
|
await consumer.onDestroy();
|
|
198
221
|
return results;
|
|
199
222
|
}
|
|
223
|
+
async importObjects() {
|
|
224
|
+
try {
|
|
225
|
+
await this.import({
|
|
226
|
+
ids: [],
|
|
227
|
+
objectsOnly: true,
|
|
228
|
+
installNpmPackages: false
|
|
229
|
+
}, []);
|
|
230
|
+
} catch (err) {
|
|
231
|
+
// TODO: this is a hack since the legacy throw an error, we should provide a way to not throw this error from the legacy
|
|
232
|
+
if (err instanceof _exceptions().NothingToImport) {
|
|
233
|
+
// Do not write nothing to import warning
|
|
234
|
+
return;
|
|
235
|
+
}
|
|
236
|
+
throw err;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
200
239
|
|
|
201
240
|
/**
|
|
202
241
|
* @todo: combine with this.import()
|
|
203
242
|
*/
|
|
204
243
|
async importWithOptions(importOptions) {
|
|
205
244
|
if (!this.workspace) throw new (_workspace().OutsideWorkspaceError)();
|
|
206
|
-
const importComponents = new (_importComponents().default)(this.workspace, this.graph, importOptions);
|
|
245
|
+
const importComponents = new (_importComponents().default)(this.workspace, this.graph, this.componentWriter, importOptions);
|
|
207
246
|
return importComponents.importComponents();
|
|
208
247
|
}
|
|
209
248
|
async fetch(ids, lanes, components, fromOriginalScope) {
|
|
@@ -223,10 +262,10 @@ class ImporterMain {
|
|
|
223
262
|
fromOriginalScope
|
|
224
263
|
};
|
|
225
264
|
if (lanes) {
|
|
226
|
-
importOptions.lanes = await getLanes();
|
|
265
|
+
importOptions.lanes = await getLanes(this.logger);
|
|
227
266
|
importOptions.ids = [];
|
|
228
267
|
}
|
|
229
|
-
const importComponents = new (_importComponents().default)(this.workspace, this.graph, importOptions);
|
|
268
|
+
const importComponents = new (_importComponents().default)(this.workspace, this.graph, this.componentWriter, importOptions);
|
|
230
269
|
const {
|
|
231
270
|
importedIds,
|
|
232
271
|
importDetails
|
|
@@ -237,7 +276,7 @@ class ImporterMain {
|
|
|
237
276
|
importedIds,
|
|
238
277
|
importDetails
|
|
239
278
|
};
|
|
240
|
-
async function getLanes() {
|
|
279
|
+
async function getLanes(logger) {
|
|
241
280
|
const result = {
|
|
242
281
|
laneIds: [],
|
|
243
282
|
lanes: []
|
|
@@ -261,7 +300,7 @@ class ImporterMain {
|
|
|
261
300
|
if (err instanceof _legacyBitId().InvalidScopeName || err instanceof _scopeNotFoundOrDenied().ScopeNotFoundOrDenied || err instanceof _laneNotFound().LaneNotFound || err instanceof _legacyBitId().InvalidScopeNameFromRemote) {
|
|
262
301
|
// the lane could be a local lane so no need to throw an error in such case
|
|
263
302
|
_loader().default.stop();
|
|
264
|
-
|
|
303
|
+
logger.console(`unable to get lane's data from a remote due to an error:\n${err.message}`, 'warn', 'yellow');
|
|
265
304
|
} else {
|
|
266
305
|
throw err;
|
|
267
306
|
}
|
|
@@ -298,15 +337,25 @@ class ImporterMain {
|
|
|
298
337
|
getImportedPackagesNames(components) {
|
|
299
338
|
return components.map(component => (0, _componentIdToPackageName().default)(component));
|
|
300
339
|
}
|
|
301
|
-
static async provider([cli, workspace, depResolver, community, graph, scope]) {
|
|
302
|
-
const
|
|
340
|
+
static async provider([cli, workspace, depResolver, community, graph, scope, componentWriter, install, loggerMain]) {
|
|
341
|
+
const logger = loggerMain.createLogger(_importer().ImporterAspect.id);
|
|
342
|
+
const importerMain = new ImporterMain(workspace, depResolver, graph, scope, componentWriter, logger);
|
|
343
|
+
install.registerPreInstall(async opts => {
|
|
344
|
+
if (!(opts !== null && opts !== void 0 && opts.import)) return;
|
|
345
|
+
logger.setStatusLine('importing missing objects');
|
|
346
|
+
await importerMain.importObjects();
|
|
347
|
+
logger.consoleSuccess();
|
|
348
|
+
});
|
|
349
|
+
install.registerPreLink(async opts => {
|
|
350
|
+
if (opts !== null && opts !== void 0 && opts.fetchObject) await importerMain.importObjects();
|
|
351
|
+
});
|
|
303
352
|
cli.register(new (_import().ImportCmd)(importerMain, community.getDocsDomain()), new (_fetchCmd().FetchCmd)(importerMain));
|
|
304
353
|
return importerMain;
|
|
305
354
|
}
|
|
306
355
|
}
|
|
307
356
|
exports.ImporterMain = ImporterMain;
|
|
308
357
|
(0, _defineProperty2().default)(ImporterMain, "slots", []);
|
|
309
|
-
(0, _defineProperty2().default)(ImporterMain, "dependencies", [_cli().CLIAspect, _workspace().default, _dependencyResolver().DependencyResolverAspect, _community().CommunityAspect, _graph().default, _scope().default]);
|
|
358
|
+
(0, _defineProperty2().default)(ImporterMain, "dependencies", [_cli().CLIAspect, _workspace().default, _dependencyResolver().DependencyResolverAspect, _community().CommunityAspect, _graph().default, _scope().default, _componentWriter().default, _install().default, _logger().LoggerAspect]);
|
|
310
359
|
(0, _defineProperty2().default)(ImporterMain, "runtime", _cli().MainRuntime);
|
|
311
360
|
_importer().ImporterAspect.addRuntime(ImporterMain);
|
|
312
361
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ImporterMain","constructor","workspace","depResolver","graph","scope","import","importOptions","packageManagerArgs","OutsideWorkspaceError","consumer","ids","length","objectsOnly","isOnLane","currentRemoteLane","getCurrentRemoteLane","lanes","laneIds","toLaneId","currentLaneId","getCurrentLaneId","importComponents","ImportComponents","results","Analytics","setExtraData","importedIds","writtenComponents","removeFromWorkspaceConfig","onDestroy","importWithOptions","fetch","components","fromOriginalScope","BitError","loader","start","verbose","writeConfig","override","installNpmPackages","getLanes","importDetails","result","remoteLaneIds","map","id","trackLane","getRemoteTrackedDataByLocalLane","LaneId","from","remoteLane","remoteScope","parse","objects","remoteLanes","getAllRemoteLaneIds","scopeComponentImporter","ScopeComponentsImporter","getInstance","importLanes","push","err","InvalidScopeName","ScopeNotFoundOrDenied","LaneNotFound","InvalidScopeNameFromRemote","stop","logger","console","message","importLaneObject","laneId","persistIfNotExists","legacyScope","scopeImporter","laneObject","name","exists","loadLane","saveLane","component","importedPackageNames","getImportedPackagesNames","removeFromRootPolicy","persistConfig","path","componentIdToPackageName","provider","cli","community","importerMain","register","ImportCmd","getDocsDomain","FetchCmd","CLIAspect","WorkspaceAspect","DependencyResolverAspect","CommunityAspect","GraphAspect","ScopeAspect","MainRuntime","ImporterAspect","addRuntime"],"sources":["importer.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { DependencyResolverAspect, DependencyResolverMain } from '@teambit/dependency-resolver';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { CommunityAspect } from '@teambit/community';\nimport type { CommunityMain } from '@teambit/community';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport componentIdToPackageName from '@teambit/legacy/dist/utils/bit/component-id-to-package-name';\nimport { InvalidScopeName, InvalidScopeNameFromRemote } from '@teambit/legacy-bit-id';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport ScopeAspect, { ScopeMain } from '@teambit/scope';\nimport { LaneId } from '@teambit/lane-id';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { ScopeNotFoundOrDenied } from '@teambit/legacy/dist/remotes/exceptions/scope-not-found-or-denied';\nimport GraphAspect, { GraphMain } from '@teambit/graph';\nimport { LaneNotFound } from '@teambit/legacy/dist/api/scope/lib/exceptions/lane-not-found';\nimport { BitError } from '@teambit/bit-error';\nimport { ImportCmd } from './import.cmd';\nimport { ImporterAspect } from './importer.aspect';\nimport { FetchCmd } from './fetch-cmd';\nimport ImportComponents, { ImportOptions, ImportResult } from './import-components';\n\nexport class ImporterMain {\n constructor(\n private workspace: Workspace,\n private depResolver: DependencyResolverMain,\n private graph: GraphMain,\n private scope: ScopeMain\n ) {}\n\n async import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n consumer.packageManagerArgs = packageManagerArgs;\n if (!importOptions.ids.length) {\n importOptions.objectsOnly = true;\n }\n if (this.workspace.consumer.isOnLane()) {\n const currentRemoteLane = await this.workspace.getCurrentRemoteLane();\n if (currentRemoteLane) {\n importOptions.lanes = { laneIds: [currentRemoteLane.toLaneId()], lanes: [currentRemoteLane] };\n } else if (!importOptions.ids.length) {\n // this is probably a local lane that was never exported.\n // although no need to fetch from the lane, still, the import is needed for main (which are available on this\n // local lane)\n const currentLaneId = this.workspace.getCurrentLaneId();\n importOptions.lanes = { laneIds: [currentLaneId], lanes: [] };\n }\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, importOptions);\n const results = await importComponents.importComponents();\n Analytics.setExtraData('num_components', results.importedIds.length);\n if (results.writtenComponents && results.writtenComponents.length) {\n await this.removeFromWorkspaceConfig(results.writtenComponents);\n }\n await consumer.onDestroy();\n return results;\n }\n\n /**\n * @todo: combine with this.import()\n */\n async importWithOptions(importOptions: ImportOptions) {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const importComponents = new ImportComponents(this.workspace, this.graph, importOptions);\n return importComponents.importComponents();\n }\n\n async fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean) {\n if (!lanes && !components) {\n throw new BitError(\n `please provide the type of objects you would like to pull, the options are --components and --lanes`\n );\n }\n loader.start('fetching objects...');\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n const importOptions: ImportOptions = {\n ids,\n objectsOnly: true,\n verbose: false,\n writeConfig: false,\n override: false,\n installNpmPackages: false,\n fromOriginalScope,\n };\n if (lanes) {\n importOptions.lanes = await getLanes();\n importOptions.ids = [];\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, importOptions);\n const { importedIds, importDetails } = await importComponents.importComponents();\n Analytics.setExtraData('num_components', importedIds.length);\n await consumer.onDestroy();\n return { importedIds, importDetails };\n\n async function getLanes(): Promise<{ laneIds: LaneId[]; lanes: Lane[] }> {\n const result: { laneIds: LaneId[]; lanes: Lane[] } = { laneIds: [], lanes: [] };\n let remoteLaneIds: LaneId[] = [];\n if (ids.length) {\n remoteLaneIds = ids.map((id) => {\n const trackLane = consumer.scope.lanes.getRemoteTrackedDataByLocalLane(id);\n if (trackLane) return LaneId.from(trackLane.remoteLane, trackLane.remoteScope);\n return LaneId.parse(id);\n });\n } else {\n remoteLaneIds = await consumer.scope.objects.remoteLanes.getAllRemoteLaneIds();\n }\n const scopeComponentImporter = ScopeComponentsImporter.getInstance(consumer.scope);\n try {\n const remoteLanes = await scopeComponentImporter.importLanes(remoteLaneIds);\n result.laneIds.push(...remoteLaneIds);\n result.lanes.push(...remoteLanes);\n } catch (err) {\n if (\n err instanceof InvalidScopeName ||\n err instanceof ScopeNotFoundOrDenied ||\n err instanceof LaneNotFound ||\n err instanceof InvalidScopeNameFromRemote\n ) {\n // the lane could be a local lane so no need to throw an error in such case\n loader.stop();\n logger.console(`unable to get lane's data from a remote due to an error:\\n${err.message}`, 'warn', 'yellow');\n } else {\n throw err;\n }\n }\n\n return result;\n }\n }\n\n /**\n * get a Lane object from the remote.\n * `persistIfNotExists` saves the object in the local scope only if the lane is not there yet.\n * otherwise, it needs some merging mechanism, which is done differently whether it's export or import.\n * see `sources.mergeLane()` for export and `import-components._saveLaneDataIfNeeded()` for import.\n * in this case, because we only bring the lane object and not the components, it's not easy to do the merge.\n */\n async importLaneObject(laneId: LaneId, persistIfNotExists = true): Promise<Lane> {\n const legacyScope = this.scope.legacyScope;\n const results = await legacyScope.scopeImporter.importLanes([laneId]);\n const laneObject = results[0];\n if (!laneObject) throw new LaneNotFound(laneId.scope, laneId.name);\n\n if (persistIfNotExists) {\n const exists = await legacyScope.loadLane(laneId);\n if (!exists) {\n await legacyScope.lanes.saveLane(laneObject);\n }\n }\n\n return laneObject;\n }\n\n private async removeFromWorkspaceConfig(component: ConsumerComponent[]) {\n const importedPackageNames = this.getImportedPackagesNames(component);\n this.depResolver.removeFromRootPolicy(importedPackageNames);\n await this.depResolver.persistConfig(this.workspace.path);\n }\n\n private getImportedPackagesNames(components: ConsumerComponent[]): string[] {\n return components.map((component) => componentIdToPackageName(component));\n }\n\n static slots = [];\n static dependencies = [\n CLIAspect,\n WorkspaceAspect,\n DependencyResolverAspect,\n CommunityAspect,\n GraphAspect,\n ScopeAspect,\n ];\n static runtime = MainRuntime;\n static async provider([cli, workspace, depResolver, community, graph, scope]: [\n CLIMain,\n Workspace,\n DependencyResolverMain,\n CommunityMain,\n GraphMain,\n ScopeMain\n ]) {\n const importerMain = new ImporterMain(workspace, depResolver, graph, scope);\n cli.register(new ImportCmd(importerMain, community.getDocsDomain()), new FetchCmd(importerMain));\n return importerMain;\n }\n}\n\nImporterAspect.addRuntime(ImporterMain);\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["ImporterMain","constructor","workspace","depResolver","graph","scope","componentWriter","logger","import","importOptions","packageManagerArgs","OutsideWorkspaceError","consumer","ids","length","objectsOnly","isOnLane","currentRemoteLane","getCurrentRemoteLane","lanes","laneIds","toLaneId","currentLaneId","getCurrentLaneId","importComponents","ImportComponents","results","Analytics","setExtraData","importedIds","writtenComponents","removeFromWorkspaceConfig","onDestroy","importObjects","installNpmPackages","err","NothingToImport","importWithOptions","fetch","components","fromOriginalScope","BitError","loader","start","verbose","writeConfig","override","getLanes","importDetails","result","remoteLaneIds","map","id","trackLane","getRemoteTrackedDataByLocalLane","LaneId","from","remoteLane","remoteScope","parse","objects","remoteLanes","getAllRemoteLaneIds","scopeComponentImporter","ScopeComponentsImporter","getInstance","importLanes","push","InvalidScopeName","ScopeNotFoundOrDenied","LaneNotFound","InvalidScopeNameFromRemote","stop","console","message","importLaneObject","laneId","persistIfNotExists","legacyScope","scopeImporter","laneObject","name","exists","loadLane","saveLane","component","importedPackageNames","getImportedPackagesNames","removeFromRootPolicy","persistConfig","path","componentIdToPackageName","provider","cli","community","install","loggerMain","createLogger","ImporterAspect","importerMain","registerPreInstall","opts","setStatusLine","consoleSuccess","registerPreLink","fetchObject","register","ImportCmd","getDocsDomain","FetchCmd","CLIAspect","WorkspaceAspect","DependencyResolverAspect","CommunityAspect","GraphAspect","ScopeAspect","ComponentWriterAspect","InstallAspect","LoggerAspect","MainRuntime","addRuntime"],"sources":["importer.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { DependencyResolverAspect, DependencyResolverMain } from '@teambit/dependency-resolver';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { CommunityAspect } from '@teambit/community';\nimport type { CommunityMain } from '@teambit/community';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport componentIdToPackageName from '@teambit/legacy/dist/utils/bit/component-id-to-package-name';\nimport { InvalidScopeName, InvalidScopeNameFromRemote } from '@teambit/legacy-bit-id';\nimport ComponentWriterAspect, { ComponentWriterMain } from '@teambit/component-writer';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport ScopeAspect, { ScopeMain } from '@teambit/scope';\nimport { LaneId } from '@teambit/lane-id';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport InstallAspect, { InstallMain } from '@teambit/install';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { ScopeNotFoundOrDenied } from '@teambit/legacy/dist/remotes/exceptions/scope-not-found-or-denied';\nimport GraphAspect, { GraphMain } from '@teambit/graph';\nimport { LaneNotFound } from '@teambit/legacy/dist/api/scope/lib/exceptions/lane-not-found';\nimport { BitError } from '@teambit/bit-error';\nimport { ImportCmd } from './import.cmd';\nimport { ImporterAspect } from './importer.aspect';\nimport { FetchCmd } from './fetch-cmd';\nimport ImportComponents, { ImportOptions, ImportResult } from './import-components';\n\nexport class ImporterMain {\n constructor(\n private workspace: Workspace,\n private depResolver: DependencyResolverMain,\n private graph: GraphMain,\n private scope: ScopeMain,\n private componentWriter: ComponentWriterMain,\n private logger: Logger\n ) {}\n\n async import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n consumer.packageManagerArgs = packageManagerArgs;\n if (!importOptions.ids.length) {\n importOptions.objectsOnly = true;\n }\n if (this.workspace.consumer.isOnLane()) {\n const currentRemoteLane = await this.workspace.getCurrentRemoteLane();\n if (currentRemoteLane) {\n importOptions.lanes = { laneIds: [currentRemoteLane.toLaneId()], lanes: [currentRemoteLane] };\n } else if (!importOptions.ids.length) {\n // this is probably a local lane that was never exported.\n // although no need to fetch from the lane, still, the import is needed for main (which are available on this\n // local lane)\n const currentLaneId = this.workspace.getCurrentLaneId();\n importOptions.lanes = { laneIds: [currentLaneId], lanes: [] };\n }\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const results = await importComponents.importComponents();\n Analytics.setExtraData('num_components', results.importedIds.length);\n if (results.writtenComponents && results.writtenComponents.length) {\n await this.removeFromWorkspaceConfig(results.writtenComponents);\n }\n await consumer.onDestroy();\n return results;\n }\n\n async importObjects() {\n try {\n await this.import(\n {\n ids: [],\n objectsOnly: true,\n installNpmPackages: false,\n },\n []\n );\n } catch (err: any) {\n // TODO: this is a hack since the legacy throw an error, we should provide a way to not throw this error from the legacy\n if (err instanceof NothingToImport) {\n // Do not write nothing to import warning\n return;\n }\n throw err;\n }\n }\n\n /**\n * @todo: combine with this.import()\n */\n async importWithOptions(importOptions: ImportOptions) {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n return importComponents.importComponents();\n }\n\n async fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean) {\n if (!lanes && !components) {\n throw new BitError(\n `please provide the type of objects you would like to pull, the options are --components and --lanes`\n );\n }\n loader.start('fetching objects...');\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n const importOptions: ImportOptions = {\n ids,\n objectsOnly: true,\n verbose: false,\n writeConfig: false,\n override: false,\n installNpmPackages: false,\n fromOriginalScope,\n };\n if (lanes) {\n importOptions.lanes = await getLanes(this.logger);\n importOptions.ids = [];\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const { importedIds, importDetails } = await importComponents.importComponents();\n Analytics.setExtraData('num_components', importedIds.length);\n await consumer.onDestroy();\n return { importedIds, importDetails };\n\n async function getLanes(logger: Logger): Promise<{ laneIds: LaneId[]; lanes: Lane[] }> {\n const result: { laneIds: LaneId[]; lanes: Lane[] } = { laneIds: [], lanes: [] };\n let remoteLaneIds: LaneId[] = [];\n if (ids.length) {\n remoteLaneIds = ids.map((id) => {\n const trackLane = consumer.scope.lanes.getRemoteTrackedDataByLocalLane(id);\n if (trackLane) return LaneId.from(trackLane.remoteLane, trackLane.remoteScope);\n return LaneId.parse(id);\n });\n } else {\n remoteLaneIds = await consumer.scope.objects.remoteLanes.getAllRemoteLaneIds();\n }\n const scopeComponentImporter = ScopeComponentsImporter.getInstance(consumer.scope);\n try {\n const remoteLanes = await scopeComponentImporter.importLanes(remoteLaneIds);\n result.laneIds.push(...remoteLaneIds);\n result.lanes.push(...remoteLanes);\n } catch (err) {\n if (\n err instanceof InvalidScopeName ||\n err instanceof ScopeNotFoundOrDenied ||\n err instanceof LaneNotFound ||\n err instanceof InvalidScopeNameFromRemote\n ) {\n // the lane could be a local lane so no need to throw an error in such case\n loader.stop();\n logger.console(`unable to get lane's data from a remote due to an error:\\n${err.message}`, 'warn', 'yellow');\n } else {\n throw err;\n }\n }\n\n return result;\n }\n }\n\n /**\n * get a Lane object from the remote.\n * `persistIfNotExists` saves the object in the local scope only if the lane is not there yet.\n * otherwise, it needs some merging mechanism, which is done differently whether it's export or import.\n * see `sources.mergeLane()` for export and `import-components._saveLaneDataIfNeeded()` for import.\n * in this case, because we only bring the lane object and not the components, it's not easy to do the merge.\n */\n async importLaneObject(laneId: LaneId, persistIfNotExists = true): Promise<Lane> {\n const legacyScope = this.scope.legacyScope;\n const results = await legacyScope.scopeImporter.importLanes([laneId]);\n const laneObject = results[0];\n if (!laneObject) throw new LaneNotFound(laneId.scope, laneId.name);\n\n if (persistIfNotExists) {\n const exists = await legacyScope.loadLane(laneId);\n if (!exists) {\n await legacyScope.lanes.saveLane(laneObject);\n }\n }\n\n return laneObject;\n }\n\n private async removeFromWorkspaceConfig(component: ConsumerComponent[]) {\n const importedPackageNames = this.getImportedPackagesNames(component);\n this.depResolver.removeFromRootPolicy(importedPackageNames);\n await this.depResolver.persistConfig(this.workspace.path);\n }\n\n private getImportedPackagesNames(components: ConsumerComponent[]): string[] {\n return components.map((component) => componentIdToPackageName(component));\n }\n\n static slots = [];\n static dependencies = [\n CLIAspect,\n WorkspaceAspect,\n DependencyResolverAspect,\n CommunityAspect,\n GraphAspect,\n ScopeAspect,\n ComponentWriterAspect,\n InstallAspect,\n LoggerAspect,\n ];\n static runtime = MainRuntime;\n static async provider([cli, workspace, depResolver, community, graph, scope, componentWriter, install, loggerMain]: [\n CLIMain,\n Workspace,\n DependencyResolverMain,\n CommunityMain,\n GraphMain,\n ScopeMain,\n ComponentWriterMain,\n InstallMain,\n LoggerMain\n ]) {\n const logger = loggerMain.createLogger(ImporterAspect.id);\n const importerMain = new ImporterMain(workspace, depResolver, graph, scope, componentWriter, logger);\n install.registerPreInstall(async (opts) => {\n if (!opts?.import) return;\n logger.setStatusLine('importing missing objects');\n await importerMain.importObjects();\n logger.consoleSuccess();\n });\n install.registerPreLink(async (opts) => {\n if (opts?.fetchObject) await importerMain.importObjects();\n });\n cli.register(new ImportCmd(importerMain, community.getDocsDomain()), new FetchCmd(importerMain));\n return importerMain;\n }\n}\n\nImporterAspect.addRuntime(ImporterMain);\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAAoF;AAAA;AAE7E,MAAMA,YAAY,CAAC;EACxBC,WAAW,CACDC,SAAoB,EACpBC,WAAmC,EACnCC,KAAgB,EAChBC,KAAgB,EAChBC,eAAoC,EACpCC,MAAc,EACtB;IAAA,KANQL,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,WAAmC,GAAnCA,WAAmC;IAAA,KACnCC,KAAgB,GAAhBA,KAAgB;IAAA,KAChBC,KAAgB,GAAhBA,KAAgB;IAAA,KAChBC,eAAoC,GAApCA,eAAoC;IAAA,KACpCC,MAAc,GAAdA,MAAc;EACrB;EAEH,MAAMC,MAAM,CAACC,aAA4B,EAAEC,kBAA4B,EAAyB;IAC9F,IAAI,CAAC,IAAI,CAACR,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMC,QAAQ,GAAG,IAAI,CAACV,SAAS,CAACU,QAAQ;IACxCA,QAAQ,CAACF,kBAAkB,GAAGA,kBAAkB;IAChD,IAAI,CAACD,aAAa,CAACI,GAAG,CAACC,MAAM,EAAE;MAC7BL,aAAa,CAACM,WAAW,GAAG,IAAI;IAClC;IACA,IAAI,IAAI,CAACb,SAAS,CAACU,QAAQ,CAACI,QAAQ,EAAE,EAAE;MACtC,MAAMC,iBAAiB,GAAG,MAAM,IAAI,CAACf,SAAS,CAACgB,oBAAoB,EAAE;MACrE,IAAID,iBAAiB,EAAE;QACrBR,aAAa,CAACU,KAAK,GAAG;UAAEC,OAAO,EAAE,CAACH,iBAAiB,CAACI,QAAQ,EAAE,CAAC;UAAEF,KAAK,EAAE,CAACF,iBAAiB;QAAE,CAAC;MAC/F,CAAC,MAAM,IAAI,CAACR,aAAa,CAACI,GAAG,CAACC,MAAM,EAAE;QACpC;QACA;QACA;QACA,MAAMQ,aAAa,GAAG,IAAI,CAACpB,SAAS,CAACqB,gBAAgB,EAAE;QACvDd,aAAa,CAACU,KAAK,GAAG;UAAEC,OAAO,EAAE,CAACE,aAAa,CAAC;UAAEH,KAAK,EAAE;QAAG,CAAC;MAC/D;IACF;IACA,MAAMK,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,MAAMiB,OAAO,GAAG,MAAMF,gBAAgB,CAACA,gBAAgB,EAAE;IACzDG,sBAAS,CAACC,YAAY,CAAC,gBAAgB,EAAEF,OAAO,CAACG,WAAW,CAACf,MAAM,CAAC;IACpE,IAAIY,OAAO,CAACI,iBAAiB,IAAIJ,OAAO,CAACI,iBAAiB,CAAChB,MAAM,EAAE;MACjE,MAAM,IAAI,CAACiB,yBAAyB,CAACL,OAAO,CAACI,iBAAiB,CAAC;IACjE;IACA,MAAMlB,QAAQ,CAACoB,SAAS,EAAE;IAC1B,OAAON,OAAO;EAChB;EAEA,MAAMO,aAAa,GAAG;IACpB,IAAI;MACF,MAAM,IAAI,CAACzB,MAAM,CACf;QACEK,GAAG,EAAE,EAAE;QACPE,WAAW,EAAE,IAAI;QACjBmB,kBAAkB,EAAE;MACtB,CAAC,EACD,EAAE,CACH;IACH,CAAC,CAAC,OAAOC,GAAQ,EAAE;MACjB;MACA,IAAIA,GAAG,YAAYC,6BAAe,EAAE;QAClC;QACA;MACF;MACA,MAAMD,GAAG;IACX;EACF;;EAEA;AACF;AACA;EACE,MAAME,iBAAiB,CAAC5B,aAA4B,EAAE;IACpD,IAAI,CAAC,IAAI,CAACP,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMa,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,OAAOe,gBAAgB,CAACA,gBAAgB,EAAE;EAC5C;EAEA,MAAMc,KAAK,CAACzB,GAAa,EAAEM,KAAc,EAAEoB,UAAmB,EAAEC,iBAA0B,EAAE;IAC1F,IAAI,CAACrB,KAAK,IAAI,CAACoB,UAAU,EAAE;MACzB,MAAM,KAAIE,oBAAQ,EACf,qGAAoG,CACtG;IACH;IACAC,iBAAM,CAACC,KAAK,CAAC,qBAAqB,CAAC;IACnC,IAAI,CAAC,IAAI,CAACzC,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMC,QAAQ,GAAG,IAAI,CAACV,SAAS,CAACU,QAAQ;IACxC,MAAMH,aAA4B,GAAG;MACnCI,GAAG;MACHE,WAAW,EAAE,IAAI;MACjB6B,OAAO,EAAE,KAAK;MACdC,WAAW,EAAE,KAAK;MAClBC,QAAQ,EAAE,KAAK;MACfZ,kBAAkB,EAAE,KAAK;MACzBM;IACF,CAAC;IACD,IAAIrB,KAAK,EAAE;MACTV,aAAa,CAACU,KAAK,GAAG,MAAM4B,QAAQ,CAAC,IAAI,CAACxC,MAAM,CAAC;MACjDE,aAAa,CAACI,GAAG,GAAG,EAAE;IACxB;IACA,MAAMW,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,MAAM;MAAEoB,WAAW;MAAEmB;IAAc,CAAC,GAAG,MAAMxB,gBAAgB,CAACA,gBAAgB,EAAE;IAChFG,sBAAS,CAACC,YAAY,CAAC,gBAAgB,EAAEC,WAAW,CAACf,MAAM,CAAC;IAC5D,MAAMF,QAAQ,CAACoB,SAAS,EAAE;IAC1B,OAAO;MAAEH,WAAW;MAAEmB;IAAc,CAAC;IAErC,eAAeD,QAAQ,CAACxC,MAAc,EAAiD;MACrF,MAAM0C,MAA4C,GAAG;QAAE7B,OAAO,EAAE,EAAE;QAAED,KAAK,EAAE;MAAG,CAAC;MAC/E,IAAI+B,aAAuB,GAAG,EAAE;MAChC,IAAIrC,GAAG,CAACC,MAAM,EAAE;QACdoC,aAAa,GAAGrC,GAAG,CAACsC,GAAG,CAAEC,EAAE,IAAK;UAC9B,MAAMC,SAAS,GAAGzC,QAAQ,CAACP,KAAK,CAACc,KAAK,CAACmC,+BAA+B,CAACF,EAAE,CAAC;UAC1E,IAAIC,SAAS,EAAE,OAAOE,gBAAM,CAACC,IAAI,CAACH,SAAS,CAACI,UAAU,EAAEJ,SAAS,CAACK,WAAW,CAAC;UAC9E,OAAOH,gBAAM,CAACI,KAAK,CAACP,EAAE,CAAC;QACzB,CAAC,CAAC;MACJ,CAAC,MAAM;QACLF,aAAa,GAAG,MAAMtC,QAAQ,CAACP,KAAK,CAACuD,OAAO,CAACC,WAAW,CAACC,mBAAmB,EAAE;MAChF;MACA,MAAMC,sBAAsB,GAAGC,kCAAuB,CAACC,WAAW,CAACrD,QAAQ,CAACP,KAAK,CAAC;MAClF,IAAI;QACF,MAAMwD,WAAW,GAAG,MAAME,sBAAsB,CAACG,WAAW,CAAChB,aAAa,CAAC;QAC3ED,MAAM,CAAC7B,OAAO,CAAC+C,IAAI,CAAC,GAAGjB,aAAa,CAAC;QACrCD,MAAM,CAAC9B,KAAK,CAACgD,IAAI,CAAC,GAAGN,WAAW,CAAC;MACnC,CAAC,CAAC,OAAO1B,GAAG,EAAE;QACZ,IACEA,GAAG,YAAYiC,+BAAgB,IAC/BjC,GAAG,YAAYkC,8CAAqB,IACpClC,GAAG,YAAYmC,4BAAY,IAC3BnC,GAAG,YAAYoC,yCAA0B,EACzC;UACA;UACA7B,iBAAM,CAAC8B,IAAI,EAAE;UACbjE,MAAM,CAACkE,OAAO,CAAE,6DAA4DtC,GAAG,CAACuC,OAAQ,EAAC,EAAE,MAAM,EAAE,QAAQ,CAAC;QAC9G,CAAC,MAAM;UACL,MAAMvC,GAAG;QACX;MACF;MAEA,OAAOc,MAAM;IACf;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,MAAM0B,gBAAgB,CAACC,MAAc,EAAEC,kBAAkB,GAAG,IAAI,EAAiB;IAC/E,MAAMC,WAAW,GAAG,IAAI,CAACzE,KAAK,CAACyE,WAAW;IAC1C,MAAMpD,OAAO,GAAG,MAAMoD,WAAW,CAACC,aAAa,CAACb,WAAW,CAAC,CAACU,MAAM,CAAC,CAAC;IACrE,MAAMI,UAAU,GAAGtD,OAAO,CAAC,CAAC,CAAC;IAC7B,IAAI,CAACsD,UAAU,EAAE,MAAM,KAAIV,4BAAY,EAACM,MAAM,CAACvE,KAAK,EAAEuE,MAAM,CAACK,IAAI,CAAC;IAElE,IAAIJ,kBAAkB,EAAE;MACtB,MAAMK,MAAM,GAAG,MAAMJ,WAAW,CAACK,QAAQ,CAACP,MAAM,CAAC;MACjD,IAAI,CAACM,MAAM,EAAE;QACX,MAAMJ,WAAW,CAAC3D,KAAK,CAACiE,QAAQ,CAACJ,UAAU,CAAC;MAC9C;IACF;IAEA,OAAOA,UAAU;EACnB;EAEA,MAAcjD,yBAAyB,CAACsD,SAA8B,EAAE;IACtE,MAAMC,oBAAoB,GAAG,IAAI,CAACC,wBAAwB,CAACF,SAAS,CAAC;IACrE,IAAI,CAAClF,WAAW,CAACqF,oBAAoB,CAACF,oBAAoB,CAAC;IAC3D,MAAM,IAAI,CAACnF,WAAW,CAACsF,aAAa,CAAC,IAAI,CAACvF,SAAS,CAACwF,IAAI,CAAC;EAC3D;EAEQH,wBAAwB,CAAChD,UAA+B,EAAY;IAC1E,OAAOA,UAAU,CAACY,GAAG,CAAEkC,SAAS,IAAK,IAAAM,mCAAwB,EAACN,SAAS,CAAC,CAAC;EAC3E;EAeA,aAAaO,QAAQ,CAAC,CAACC,GAAG,EAAE3F,SAAS,EAAEC,WAAW,EAAE2F,SAAS,EAAE1F,KAAK,EAAEC,KAAK,EAAEC,eAAe,EAAEyF,OAAO,EAAEC,UAAU,CAUhH,EAAE;IACD,MAAMzF,MAAM,GAAGyF,UAAU,CAACC,YAAY,CAACC,0BAAc,CAAC9C,EAAE,CAAC;IACzD,MAAM+C,YAAY,GAAG,IAAInG,YAAY,CAACE,SAAS,EAAEC,WAAW,EAAEC,KAAK,EAAEC,KAAK,EAAEC,eAAe,EAAEC,MAAM,CAAC;IACpGwF,OAAO,CAACK,kBAAkB,CAAC,MAAOC,IAAI,IAAK;MACzC,IAAI,EAACA,IAAI,aAAJA,IAAI,eAAJA,IAAI,CAAE7F,MAAM,GAAE;MACnBD,MAAM,CAAC+F,aAAa,CAAC,2BAA2B,CAAC;MACjD,MAAMH,YAAY,CAAClE,aAAa,EAAE;MAClC1B,MAAM,CAACgG,cAAc,EAAE;IACzB,CAAC,CAAC;IACFR,OAAO,CAACS,eAAe,CAAC,MAAOH,IAAI,IAAK;MACtC,IAAIA,IAAI,aAAJA,IAAI,eAAJA,IAAI,CAAEI,WAAW,EAAE,MAAMN,YAAY,CAAClE,aAAa,EAAE;IAC3D,CAAC,CAAC;IACF4D,GAAG,CAACa,QAAQ,CAAC,KAAIC,mBAAS,EAACR,YAAY,EAAEL,SAAS,CAACc,aAAa,EAAE,CAAC,EAAE,KAAIC,oBAAQ,EAACV,YAAY,CAAC,CAAC;IAChG,OAAOA,YAAY;EACrB;AACF;AAAC;AAAA,gCA3MYnG,YAAY,WAqKR,EAAE;AAAA,gCArKNA,YAAY,kBAsKD,CACpB8G,gBAAS,EACTC,oBAAe,EACfC,8CAAwB,EACxBC,4BAAe,EACfC,gBAAW,EACXC,gBAAW,EACXC,0BAAqB,EACrBC,kBAAa,EACbC,sBAAY,CACb;AAAA,gCAhLUtH,YAAY,aAiLNuH,kBAAW;AA4B9BrB,0BAAc,CAACsB,UAAU,CAACxH,YAAY,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.394/dist/importer.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.394/dist/importer.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/importer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.394",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/scope/importer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.scope",
|
|
8
8
|
"name": "importer",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.394"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "2.4.2",
|
|
@@ -16,15 +16,18 @@
|
|
|
16
16
|
"core-js": "^3.0.0",
|
|
17
17
|
"@babel/runtime": "7.20.0",
|
|
18
18
|
"@teambit/harmony": "0.4.6",
|
|
19
|
-
"@teambit/cli": "0.0.
|
|
19
|
+
"@teambit/cli": "0.0.648",
|
|
20
20
|
"@teambit/legacy-bit-id": "0.0.421",
|
|
21
21
|
"@teambit/bit-error": "0.0.402",
|
|
22
|
-
"@teambit/
|
|
23
|
-
"@teambit/
|
|
24
|
-
"@teambit/
|
|
25
|
-
"@teambit/
|
|
26
|
-
"@teambit/
|
|
27
|
-
"@teambit/
|
|
22
|
+
"@teambit/component-writer": "0.0.1",
|
|
23
|
+
"@teambit/graph": "0.0.965",
|
|
24
|
+
"@teambit/lane-id": "0.0.165",
|
|
25
|
+
"@teambit/workspace": "0.0.965",
|
|
26
|
+
"@teambit/community": "0.0.196",
|
|
27
|
+
"@teambit/dependency-resolver": "0.0.965",
|
|
28
|
+
"@teambit/install": "0.0.95",
|
|
29
|
+
"@teambit/logger": "0.0.741",
|
|
30
|
+
"@teambit/scope": "0.0.965"
|
|
28
31
|
},
|
|
29
32
|
"devDependencies": {
|
|
30
33
|
"@types/lodash": "4.14.165",
|
|
@@ -36,7 +39,7 @@
|
|
|
36
39
|
"@types/testing-library__jest-dom": "5.9.5"
|
|
37
40
|
},
|
|
38
41
|
"peerDependencies": {
|
|
39
|
-
"@teambit/legacy": "1.0.
|
|
42
|
+
"@teambit/legacy": "1.0.429",
|
|
40
43
|
"react": "^16.8.0 || ^17.0.0",
|
|
41
44
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
42
45
|
},
|
|
Binary file
|