@teambit/eject 1.0.1174 → 1.0.1176
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.
|
@@ -39,6 +39,13 @@ function _component() {
|
|
|
39
39
|
};
|
|
40
40
|
return data;
|
|
41
41
|
}
|
|
42
|
+
function _legacy() {
|
|
43
|
+
const data = require("@teambit/legacy.bit-map");
|
|
44
|
+
_legacy = function () {
|
|
45
|
+
return data;
|
|
46
|
+
};
|
|
47
|
+
return data;
|
|
48
|
+
}
|
|
42
49
|
function _remove() {
|
|
43
50
|
const data = require("@teambit/remove");
|
|
44
51
|
_remove = function () {
|
|
@@ -138,7 +145,9 @@ class ComponentsEjector {
|
|
|
138
145
|
await this.install.install(packages);
|
|
139
146
|
}
|
|
140
147
|
getPackagesToInstall() {
|
|
141
|
-
|
|
148
|
+
// the workspace-root component is not a package (never linked, never published), ejecting it only
|
|
149
|
+
// untracks it. the name its id derives may belong to an unrelated package.
|
|
150
|
+
return this.componentsToEject.filter(c => c.componentMap?.rootDir !== _legacy().WORKSPACE_ROOT_DIR).map(c => (0, _pkgModules().componentIdToPackageName)(c));
|
|
142
151
|
}
|
|
143
152
|
_buildExceptionMessageWithRollbackData(action) {
|
|
144
153
|
return `eject failed ${action}.
|
|
@@ -166,6 +175,11 @@ your package.json (if existed) has been restored, however, some bit generated da
|
|
|
166
175
|
if (!rootDir) {
|
|
167
176
|
throw new Error('ComponentEjector.removeComponentsFiles expect a componentMap to have rootDir');
|
|
168
177
|
}
|
|
178
|
+
if (rootDir === _legacy().WORKSPACE_ROOT_DIR) {
|
|
179
|
+
// see the same guard in deleteComponentsFiles - removing this rootDir deletes the whole
|
|
180
|
+
// workspace. the files it owns are the workspace's own, so ejecting it leaves them alone.
|
|
181
|
+
return;
|
|
182
|
+
}
|
|
169
183
|
dataToPersist.removePath(new (_component().RemovePath)(rootDir, true));
|
|
170
184
|
});
|
|
171
185
|
dataToPersist.addBasePath(this.consumer.getPath());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_componentId","data","require","_cli","_scope","_pkgModules","_component","_remove","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","ComponentsEjector","constructor","workspace","install","logger","componentsIds","ejectOptions","consumer","idsToEject","ComponentIdList","failedComponents","modifiedComponents","stagedComponents","notExportedComponents","selfHostedExportedComponents","eject","decideWhichComponentsToEject","debug","length","loadComponentsToEject","_validateIdsHaveScopesAndVersions","removeComponentsFromNodeModules","untrackComponents","installPackages","removeComponentsFiles","writeBitMap","ejectedComponents","setStatusLine","remotes","getScopeRemotes","scope","hubExportedComponents","forEach","componentId","bitId","isExported","push","isHub","force","Promise","all","map","id","componentStatus","getComponentStatusById","modified","staged","err","throwEjectError","toString","consoleSuccess","workspaceComponents","getMany","componentsToEject","workspaceComponent","state","_consumer","action","skipDependencyInstallation","packages","getPackagesToInstall","c","componentIdToPackageName","_buildExceptionMessageWithRollbackData","keepFiles","dataToPersist","DataToPersist","component","componentMap","Error","rootDir","removePath","RemovePath","addBasePath","getPath","persistAllToFS","cleanFromBitMap","message","originalError","originalErrorMessage","defaultErrorHandler","error","hasScope","hasVersion","exports"],"sources":["components-ejector.ts"],"sourcesContent":["/**\n * a classic use case of eject is when a user imports a component using `bit import` to update it,\n * but the user has no intention to have the code as part of the project source code.\n * the eject provides the option to delete the component locally and install it via the NPM client.\n *\n * an implementation note, the entire process is done with rollback in mind.\n * since installing the component via NPM client is an error prone process, we do it first, before\n * removing the component files, so then it's easier to rollback.\n */\nimport type { Workspace } from '@teambit/workspace';\nimport type { Consumer } from '@teambit/legacy.consumer';\nimport type { ComponentID } from '@teambit/component-id';\nimport { ComponentIdList } from '@teambit/component-id';\nimport { defaultErrorHandler } from '@teambit/cli';\nimport { getScopeRemotes } from '@teambit/scope.remotes';\nimport { componentIdToPackageName } from '@teambit/pkg.modules.component-package-name';\nimport type { ConsumerComponent as Component } from '@teambit/legacy.consumer-component';\nimport { DataToPersist, RemovePath } from '@teambit/component.sources';\nimport type { Logger } from '@teambit/logger';\nimport type { InstallMain } from '@teambit/install';\nimport { removeComponentsFromNodeModules } from '@teambit/remove';\n\nexport type EjectResults = {\n ejectedComponents: ComponentIdList;\n failedComponents: FailedComponents;\n};\n\nexport type EjectOptions = {\n force?: boolean; // eject although a component is modified/staged\n keepFiles?: boolean; // keep component files on the workspace\n skipDependencyInstallation?: boolean; // skip installing the dependencies\n};\n\ntype FailedComponents = {\n modifiedComponents: ComponentIdList;\n stagedComponents: ComponentIdList;\n notExportedComponents: ComponentIdList;\n selfHostedExportedComponents: ComponentIdList;\n};\n\nexport class ComponentsEjector {\n consumer: Consumer;\n idsToEject: ComponentIdList;\n componentsToEject: Component[] = [];\n notEjectedDependents: Array<{ dependent: Component; ejectedDependencies: Component[] }>;\n failedComponents: FailedComponents;\n constructor(\n private workspace: Workspace,\n private install: InstallMain,\n private logger: Logger,\n private componentsIds: ComponentID[],\n private ejectOptions: EjectOptions\n ) {\n this.consumer = this.workspace.consumer;\n this.idsToEject = new ComponentIdList();\n this.failedComponents = {\n modifiedComponents: new ComponentIdList(),\n stagedComponents: new ComponentIdList(),\n notExportedComponents: new ComponentIdList(),\n selfHostedExportedComponents: new ComponentIdList(),\n };\n }\n\n async eject(): Promise<EjectResults> {\n await this.decideWhichComponentsToEject();\n this.logger.debug(`${this.idsToEject.length} to eject`);\n await this.loadComponentsToEject();\n if (this.idsToEject.length) {\n this._validateIdsHaveScopesAndVersions();\n await this.removeComponentsFromNodeModules();\n await this.untrackComponents();\n await this.installPackages();\n await this.removeComponentsFiles();\n await this.consumer.writeBitMap();\n }\n this.logger.debug('eject: completed successfully');\n return {\n ejectedComponents: this.idsToEject,\n failedComponents: this.failedComponents,\n };\n }\n\n async decideWhichComponentsToEject(): Promise<void> {\n this.logger.setStatusLine('Eject: getting the components status');\n if (!this.componentsIds.length) return;\n const remotes = await getScopeRemotes(this.consumer.scope);\n const hubExportedComponents = new ComponentIdList();\n this.componentsIds.forEach((componentId) => {\n const bitId = componentId;\n if (!this.workspace.isExported(bitId)) this.failedComponents.notExportedComponents.push(bitId);\n else if (remotes.isHub(bitId.scope as string)) hubExportedComponents.push(bitId);\n else this.failedComponents.selfHostedExportedComponents.push(bitId);\n });\n if (this.ejectOptions.force) {\n this.idsToEject = hubExportedComponents;\n } else {\n await Promise.all(\n hubExportedComponents.map(async (id) => {\n try {\n const componentStatus = await this.workspace.getComponentStatusById(id);\n if (componentStatus.modified) this.failedComponents.modifiedComponents.push(id);\n else if (componentStatus.staged) this.failedComponents.stagedComponents.push(id);\n else this.idsToEject.push(id);\n } catch (err: any) {\n this.throwEjectError(\n `eject operation failed getting the status of ${id.toString()}, no action has been done.\n please fix the issue to continue.`,\n err\n );\n }\n })\n );\n }\n this.logger.consoleSuccess();\n }\n\n async loadComponentsToEject() {\n const workspaceComponents = await this.workspace.getMany(this.idsToEject);\n this.componentsToEject = workspaceComponents.map((workspaceComponent) => workspaceComponent.state._consumer);\n }\n\n async removeComponentsFromNodeModules() {\n const action = 'Eject: removing the existing components from node_modules';\n this.logger.setStatusLine(action);\n this.logger.debug(action);\n await removeComponentsFromNodeModules(this.consumer, this.componentsToEject);\n this.logger.consoleSuccess(action);\n }\n\n async installPackages() {\n if (this.ejectOptions.skipDependencyInstallation) return;\n this.logger.setStatusLine('Eject: installing packages using the package-manager');\n const packages = this.getPackagesToInstall();\n await this.install.install(packages);\n }\n\n getPackagesToInstall(): string[] {\n return this.componentsToEject.map((c) => componentIdToPackageName(c));\n }\n\n _buildExceptionMessageWithRollbackData(action: string): string {\n return `eject failed ${action}.\nyour package.json (if existed) has been restored, however, some bit generated data may have been deleted, please run \"bit link\" to restore them.`;\n }\n\n /**\n * as part of the 'eject' operation, a component is removed locally. as opposed to the remove\n * command, in this case, no need to remove the objects from the scope, only remove from the\n * filesystem, which means, delete the component files, untrack from .bitmap and clean\n * package.json and bit.json traces.\n */\n private async removeComponentsFiles() {\n if (this.ejectOptions.keepFiles) {\n return;\n }\n this.logger.setStatusLine('Eject: removing the components files from the filesystem');\n const dataToPersist = new DataToPersist();\n this.componentsToEject.forEach((component) => {\n const componentMap = component.componentMap;\n if (!componentMap) {\n throw new Error('ComponentEjector.removeComponentsFiles expect a component to have componentMap prop');\n }\n const rootDir = componentMap.rootDir;\n if (!rootDir) {\n throw new Error('ComponentEjector.removeComponentsFiles expect a componentMap to have rootDir');\n }\n dataToPersist.removePath(new RemovePath(rootDir, true));\n });\n dataToPersist.addBasePath(this.consumer.getPath());\n await dataToPersist.persistAllToFS();\n this.logger.consoleSuccess();\n }\n\n private async untrackComponents() {\n this.logger.debug('eject: removing the components from the .bitmap');\n await this.consumer.cleanFromBitMap(this.idsToEject);\n }\n\n throwEjectError(message: string, originalError: Error) {\n const { message: originalErrorMessage } = defaultErrorHandler(originalError);\n this.logger.error(`eject has stopped due to an error ${originalErrorMessage}`, originalError);\n throw new Error(`${message}\n\ngot the following error: ${originalErrorMessage}`);\n }\n\n _validateIdsHaveScopesAndVersions() {\n this.idsToEject.forEach((id) => {\n if (!id.hasScope() || !id.hasVersion()) {\n throw new TypeError(`EjectComponents expects ids with scope and version, got ${id.toString()}`);\n }\n });\n }\n}\n"],"mappings":";;;;;;AAYA,SAAAA,aAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,YAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAE,KAAA;EAAA,MAAAF,IAAA,GAAAC,OAAA;EAAAC,IAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,OAAA;EAAA,MAAAH,IAAA,GAAAC,OAAA;EAAAE,MAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,YAAA;EAAA,MAAAJ,IAAA,GAAAC,OAAA;EAAAG,WAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAK,WAAA;EAAA,MAAAL,IAAA,GAAAC,OAAA;EAAAI,UAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGA,SAAAM,QAAA;EAAA,MAAAN,IAAA,GAAAC,OAAA;EAAAK,OAAA,YAAAA,CAAA;IAAA,OAAAN,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAkE,SAAAO,gBAAAC,CAAA,EAAAC,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAE,cAAA,CAAAF,CAAA,MAAAD,CAAA,GAAAI,MAAA,CAAAC,cAAA,CAAAL,CAAA,EAAAC,CAAA,IAAAK,KAAA,EAAAJ,CAAA,EAAAK,UAAA,MAAAC,YAAA,MAAAC,QAAA,UAAAT,CAAA,CAAAC,CAAA,IAAAC,CAAA,EAAAF,CAAA;AAAA,SAAAG,eAAAD,CAAA,QAAAQ,CAAA,GAAAC,YAAA,CAAAT,CAAA,uCAAAQ,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAT,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAF,CAAA,GAAAE,CAAA,CAAAU,MAAA,CAAAC,WAAA,kBAAAb,CAAA,QAAAU,CAAA,GAAAV,CAAA,CAAAc,IAAA,CAAAZ,CAAA,EAAAD,CAAA,uCAAAS,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAAd,CAAA,GAAAe,MAAA,GAAAC,MAAA,EAAAf,CAAA,KApBlE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAgCO,MAAMgB,iBAAiB,CAAC;EAM7BC,WAAWA,CACDC,SAAoB,EACpBC,OAAoB,EACpBC,MAAc,EACdC,aAA4B,EAC5BC,YAA0B,EAClC;IAAA,KALQJ,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,OAAoB,GAApBA,OAAoB;IAAA,KACpBC,MAAc,GAAdA,MAAc;IAAA,KACdC,aAA4B,GAA5BA,aAA4B;IAAA,KAC5BC,YAA0B,GAA1BA,YAA0B;IAAAzB,eAAA;IAAAA,eAAA;IAAAA,eAAA,4BARH,EAAE;IAAAA,eAAA;IAAAA,eAAA;IAUjC,IAAI,CAAC0B,QAAQ,GAAG,IAAI,CAACL,SAAS,CAACK,QAAQ;IACvC,IAAI,CAACC,UAAU,GAAG,KAAIC,8BAAe,EAAC,CAAC;IACvC,IAAI,CAACC,gBAAgB,GAAG;MACtBC,kBAAkB,EAAE,KAAIF,8BAAe,EAAC,CAAC;MACzCG,gBAAgB,EAAE,KAAIH,8BAAe,EAAC,CAAC;MACvCI,qBAAqB,EAAE,KAAIJ,8BAAe,EAAC,CAAC;MAC5CK,4BAA4B,EAAE,KAAIL,8BAAe,EAAC;IACpD,CAAC;EACH;EAEA,MAAMM,KAAKA,CAAA,EAA0B;IACnC,MAAM,IAAI,CAACC,4BAA4B,CAAC,CAAC;IACzC,IAAI,CAACZ,MAAM,CAACa,KAAK,CAAC,GAAG,IAAI,CAACT,UAAU,CAACU,MAAM,WAAW,CAAC;IACvD,MAAM,IAAI,CAACC,qBAAqB,CAAC,CAAC;IAClC,IAAI,IAAI,CAACX,UAAU,CAACU,MAAM,EAAE;MAC1B,IAAI,CAACE,iCAAiC,CAAC,CAAC;MACxC,MAAM,IAAI,CAACC,+BAA+B,CAAC,CAAC;MAC5C,MAAM,IAAI,CAACC,iBAAiB,CAAC,CAAC;MAC9B,MAAM,IAAI,CAACC,eAAe,CAAC,CAAC;MAC5B,MAAM,IAAI,CAACC,qBAAqB,CAAC,CAAC;MAClC,MAAM,IAAI,CAACjB,QAAQ,CAACkB,WAAW,CAAC,CAAC;IACnC;IACA,IAAI,CAACrB,MAAM,CAACa,KAAK,CAAC,+BAA+B,CAAC;IAClD,OAAO;MACLS,iBAAiB,EAAE,IAAI,CAAClB,UAAU;MAClCE,gBAAgB,EAAE,IAAI,CAACA;IACzB,CAAC;EACH;EAEA,MAAMM,4BAA4BA,CAAA,EAAkB;IAClD,IAAI,CAACZ,MAAM,CAACuB,aAAa,CAAC,sCAAsC,CAAC;IACjE,IAAI,CAAC,IAAI,CAACtB,aAAa,CAACa,MAAM,EAAE;IAChC,MAAMU,OAAO,GAAG,MAAM,IAAAC,wBAAe,EAAC,IAAI,CAACtB,QAAQ,CAACuB,KAAK,CAAC;IAC1D,MAAMC,qBAAqB,GAAG,KAAItB,8BAAe,EAAC,CAAC;IACnD,IAAI,CAACJ,aAAa,CAAC2B,OAAO,CAAEC,WAAW,IAAK;MAC1C,MAAMC,KAAK,GAAGD,WAAW;MACzB,IAAI,CAAC,IAAI,CAAC/B,SAAS,CAACiC,UAAU,CAACD,KAAK,CAAC,EAAE,IAAI,CAACxB,gBAAgB,CAACG,qBAAqB,CAACuB,IAAI,CAACF,KAAK,CAAC,CAAC,KAC1F,IAAIN,OAAO,CAACS,KAAK,CAACH,KAAK,CAACJ,KAAe,CAAC,EAAEC,qBAAqB,CAACK,IAAI,CAACF,KAAK,CAAC,CAAC,KAC5E,IAAI,CAACxB,gBAAgB,CAACI,4BAA4B,CAACsB,IAAI,CAACF,KAAK,CAAC;IACrE,CAAC,CAAC;IACF,IAAI,IAAI,CAAC5B,YAAY,CAACgC,KAAK,EAAE;MAC3B,IAAI,CAAC9B,UAAU,GAAGuB,qBAAqB;IACzC,CAAC,MAAM;MACL,MAAMQ,OAAO,CAACC,GAAG,CACfT,qBAAqB,CAACU,GAAG,CAAC,MAAOC,EAAE,IAAK;QACtC,IAAI;UACF,MAAMC,eAAe,GAAG,MAAM,IAAI,CAACzC,SAAS,CAAC0C,sBAAsB,CAACF,EAAE,CAAC;UACvE,IAAIC,eAAe,CAACE,QAAQ,EAAE,IAAI,CAACnC,gBAAgB,CAACC,kBAAkB,CAACyB,IAAI,CAACM,EAAE,CAAC,CAAC,KAC3E,IAAIC,eAAe,CAACG,MAAM,EAAE,IAAI,CAACpC,gBAAgB,CAACE,gBAAgB,CAACwB,IAAI,CAACM,EAAE,CAAC,CAAC,KAC5E,IAAI,CAAClC,UAAU,CAAC4B,IAAI,CAACM,EAAE,CAAC;QAC/B,CAAC,CAAC,OAAOK,GAAQ,EAAE;UACjB,IAAI,CAACC,eAAe,CAClB,gDAAgDN,EAAE,CAACO,QAAQ,CAAC,CAAC;AAC3E,8CAA8C,EAChCF,GACF,CAAC;QACH;MACF,CAAC,CACH,CAAC;IACH;IACA,IAAI,CAAC3C,MAAM,CAAC8C,cAAc,CAAC,CAAC;EAC9B;EAEA,MAAM/B,qBAAqBA,CAAA,EAAG;IAC5B,MAAMgC,mBAAmB,GAAG,MAAM,IAAI,CAACjD,SAAS,CAACkD,OAAO,CAAC,IAAI,CAAC5C,UAAU,CAAC;IACzE,IAAI,CAAC6C,iBAAiB,GAAGF,mBAAmB,CAACV,GAAG,CAAEa,kBAAkB,IAAKA,kBAAkB,CAACC,KAAK,CAACC,SAAS,CAAC;EAC9G;EAEA,MAAMnC,+BAA+BA,CAAA,EAAG;IACtC,MAAMoC,MAAM,GAAG,2DAA2D;IAC1E,IAAI,CAACrD,MAAM,CAACuB,aAAa,CAAC8B,MAAM,CAAC;IACjC,IAAI,CAACrD,MAAM,CAACa,KAAK,CAACwC,MAAM,CAAC;IACzB,MAAM,IAAApC,yCAA+B,EAAC,IAAI,CAACd,QAAQ,EAAE,IAAI,CAAC8C,iBAAiB,CAAC;IAC5E,IAAI,CAACjD,MAAM,CAAC8C,cAAc,CAACO,MAAM,CAAC;EACpC;EAEA,MAAMlC,eAAeA,CAAA,EAAG;IACtB,IAAI,IAAI,CAACjB,YAAY,CAACoD,0BAA0B,EAAE;IAClD,IAAI,CAACtD,MAAM,CAACuB,aAAa,CAAC,sDAAsD,CAAC;IACjF,MAAMgC,QAAQ,GAAG,IAAI,CAACC,oBAAoB,CAAC,CAAC;IAC5C,MAAM,IAAI,CAACzD,OAAO,CAACA,OAAO,CAACwD,QAAQ,CAAC;EACtC;EAEAC,oBAAoBA,CAAA,EAAa;IAC/B,OAAO,IAAI,CAACP,iBAAiB,CAACZ,GAAG,CAAEoB,CAAC,IAAK,IAAAC,sCAAwB,EAACD,CAAC,CAAC,CAAC;EACvE;EAEAE,sCAAsCA,CAACN,MAAc,EAAU;IAC7D,OAAO,gBAAgBA,MAAM;AACjC,iJAAiJ;EAC/I;;EAEA;AACF;AACA;AACA;AACA;AACA;EACE,MAAcjC,qBAAqBA,CAAA,EAAG;IACpC,IAAI,IAAI,CAAClB,YAAY,CAAC0D,SAAS,EAAE;MAC/B;IACF;IACA,IAAI,CAAC5D,MAAM,CAACuB,aAAa,CAAC,0DAA0D,CAAC;IACrF,MAAMsC,aAAa,GAAG,KAAIC,0BAAa,EAAC,CAAC;IACzC,IAAI,CAACb,iBAAiB,CAACrB,OAAO,CAAEmC,SAAS,IAAK;MAC5C,MAAMC,YAAY,GAAGD,SAAS,CAACC,YAAY;MAC3C,IAAI,CAACA,YAAY,EAAE;QACjB,MAAM,IAAIC,KAAK,CAAC,qFAAqF,CAAC;MACxG;MACA,MAAMC,OAAO,GAAGF,YAAY,CAACE,OAAO;MACpC,IAAI,CAACA,OAAO,EAAE;QACZ,MAAM,IAAID,KAAK,CAAC,8EAA8E,CAAC;MACjG;MACAJ,aAAa,CAACM,UAAU,CAAC,KAAIC,uBAAU,EAACF,OAAO,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC,CAAC;IACFL,aAAa,CAACQ,WAAW,CAAC,IAAI,CAAClE,QAAQ,CAACmE,OAAO,CAAC,CAAC,CAAC;IAClD,MAAMT,aAAa,CAACU,cAAc,CAAC,CAAC;IACpC,IAAI,CAACvE,MAAM,CAAC8C,cAAc,CAAC,CAAC;EAC9B;EAEA,MAAc5B,iBAAiBA,CAAA,EAAG;IAChC,IAAI,CAAClB,MAAM,CAACa,KAAK,CAAC,iDAAiD,CAAC;IACpE,MAAM,IAAI,CAACV,QAAQ,CAACqE,eAAe,CAAC,IAAI,CAACpE,UAAU,CAAC;EACtD;EAEAwC,eAAeA,CAAC6B,OAAe,EAAEC,aAAoB,EAAE;IACrD,MAAM;MAAED,OAAO,EAAEE;IAAqB,CAAC,GAAG,IAAAC,0BAAmB,EAACF,aAAa,CAAC;IAC5E,IAAI,CAAC1E,MAAM,CAAC6E,KAAK,CAAC,qCAAqCF,oBAAoB,EAAE,EAAED,aAAa,CAAC;IAC7F,MAAM,IAAIT,KAAK,CAAC,GAAGQ,OAAO;AAC9B;AACA,2BAA2BE,oBAAoB,EAAE,CAAC;EAChD;EAEA3D,iCAAiCA,CAAA,EAAG;IAClC,IAAI,CAACZ,UAAU,CAACwB,OAAO,CAAEU,EAAE,IAAK;MAC9B,IAAI,CAACA,EAAE,CAACwC,QAAQ,CAAC,CAAC,IAAI,CAACxC,EAAE,CAACyC,UAAU,CAAC,CAAC,EAAE;QACtC,MAAM,IAAItF,SAAS,CAAC,2DAA2D6C,EAAE,CAACO,QAAQ,CAAC,CAAC,EAAE,CAAC;MACjG;IACF,CAAC,CAAC;EACJ;AACF;AAACmC,OAAA,CAAApF,iBAAA,GAAAA,iBAAA","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_componentId","data","require","_cli","_scope","_pkgModules","_component","_legacy","_remove","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","ComponentsEjector","constructor","workspace","install","logger","componentsIds","ejectOptions","consumer","idsToEject","ComponentIdList","failedComponents","modifiedComponents","stagedComponents","notExportedComponents","selfHostedExportedComponents","eject","decideWhichComponentsToEject","debug","length","loadComponentsToEject","_validateIdsHaveScopesAndVersions","removeComponentsFromNodeModules","untrackComponents","installPackages","removeComponentsFiles","writeBitMap","ejectedComponents","setStatusLine","remotes","getScopeRemotes","scope","hubExportedComponents","forEach","componentId","bitId","isExported","push","isHub","force","Promise","all","map","id","componentStatus","getComponentStatusById","modified","staged","err","throwEjectError","toString","consoleSuccess","workspaceComponents","getMany","componentsToEject","workspaceComponent","state","_consumer","action","skipDependencyInstallation","packages","getPackagesToInstall","filter","c","componentMap","rootDir","WORKSPACE_ROOT_DIR","componentIdToPackageName","_buildExceptionMessageWithRollbackData","keepFiles","dataToPersist","DataToPersist","component","Error","removePath","RemovePath","addBasePath","getPath","persistAllToFS","cleanFromBitMap","message","originalError","originalErrorMessage","defaultErrorHandler","error","hasScope","hasVersion","exports"],"sources":["components-ejector.ts"],"sourcesContent":["/**\n * a classic use case of eject is when a user imports a component using `bit import` to update it,\n * but the user has no intention to have the code as part of the project source code.\n * the eject provides the option to delete the component locally and install it via the NPM client.\n *\n * an implementation note, the entire process is done with rollback in mind.\n * since installing the component via NPM client is an error prone process, we do it first, before\n * removing the component files, so then it's easier to rollback.\n */\nimport type { Workspace } from '@teambit/workspace';\nimport type { Consumer } from '@teambit/legacy.consumer';\nimport type { ComponentID } from '@teambit/component-id';\nimport { ComponentIdList } from '@teambit/component-id';\nimport { defaultErrorHandler } from '@teambit/cli';\nimport { getScopeRemotes } from '@teambit/scope.remotes';\nimport { componentIdToPackageName } from '@teambit/pkg.modules.component-package-name';\nimport type { ConsumerComponent as Component } from '@teambit/legacy.consumer-component';\nimport { DataToPersist, RemovePath } from '@teambit/component.sources';\nimport { WORKSPACE_ROOT_DIR } from '@teambit/legacy.bit-map';\nimport type { Logger } from '@teambit/logger';\nimport type { InstallMain } from '@teambit/install';\nimport { removeComponentsFromNodeModules } from '@teambit/remove';\n\nexport type EjectResults = {\n ejectedComponents: ComponentIdList;\n failedComponents: FailedComponents;\n};\n\nexport type EjectOptions = {\n force?: boolean; // eject although a component is modified/staged\n keepFiles?: boolean; // keep component files on the workspace\n skipDependencyInstallation?: boolean; // skip installing the dependencies\n};\n\ntype FailedComponents = {\n modifiedComponents: ComponentIdList;\n stagedComponents: ComponentIdList;\n notExportedComponents: ComponentIdList;\n selfHostedExportedComponents: ComponentIdList;\n};\n\nexport class ComponentsEjector {\n consumer: Consumer;\n idsToEject: ComponentIdList;\n componentsToEject: Component[] = [];\n notEjectedDependents: Array<{ dependent: Component; ejectedDependencies: Component[] }>;\n failedComponents: FailedComponents;\n constructor(\n private workspace: Workspace,\n private install: InstallMain,\n private logger: Logger,\n private componentsIds: ComponentID[],\n private ejectOptions: EjectOptions\n ) {\n this.consumer = this.workspace.consumer;\n this.idsToEject = new ComponentIdList();\n this.failedComponents = {\n modifiedComponents: new ComponentIdList(),\n stagedComponents: new ComponentIdList(),\n notExportedComponents: new ComponentIdList(),\n selfHostedExportedComponents: new ComponentIdList(),\n };\n }\n\n async eject(): Promise<EjectResults> {\n await this.decideWhichComponentsToEject();\n this.logger.debug(`${this.idsToEject.length} to eject`);\n await this.loadComponentsToEject();\n if (this.idsToEject.length) {\n this._validateIdsHaveScopesAndVersions();\n await this.removeComponentsFromNodeModules();\n await this.untrackComponents();\n await this.installPackages();\n await this.removeComponentsFiles();\n await this.consumer.writeBitMap();\n }\n this.logger.debug('eject: completed successfully');\n return {\n ejectedComponents: this.idsToEject,\n failedComponents: this.failedComponents,\n };\n }\n\n async decideWhichComponentsToEject(): Promise<void> {\n this.logger.setStatusLine('Eject: getting the components status');\n if (!this.componentsIds.length) return;\n const remotes = await getScopeRemotes(this.consumer.scope);\n const hubExportedComponents = new ComponentIdList();\n this.componentsIds.forEach((componentId) => {\n const bitId = componentId;\n if (!this.workspace.isExported(bitId)) this.failedComponents.notExportedComponents.push(bitId);\n else if (remotes.isHub(bitId.scope as string)) hubExportedComponents.push(bitId);\n else this.failedComponents.selfHostedExportedComponents.push(bitId);\n });\n if (this.ejectOptions.force) {\n this.idsToEject = hubExportedComponents;\n } else {\n await Promise.all(\n hubExportedComponents.map(async (id) => {\n try {\n const componentStatus = await this.workspace.getComponentStatusById(id);\n if (componentStatus.modified) this.failedComponents.modifiedComponents.push(id);\n else if (componentStatus.staged) this.failedComponents.stagedComponents.push(id);\n else this.idsToEject.push(id);\n } catch (err: any) {\n this.throwEjectError(\n `eject operation failed getting the status of ${id.toString()}, no action has been done.\n please fix the issue to continue.`,\n err\n );\n }\n })\n );\n }\n this.logger.consoleSuccess();\n }\n\n async loadComponentsToEject() {\n const workspaceComponents = await this.workspace.getMany(this.idsToEject);\n this.componentsToEject = workspaceComponents.map((workspaceComponent) => workspaceComponent.state._consumer);\n }\n\n async removeComponentsFromNodeModules() {\n const action = 'Eject: removing the existing components from node_modules';\n this.logger.setStatusLine(action);\n this.logger.debug(action);\n await removeComponentsFromNodeModules(this.consumer, this.componentsToEject);\n this.logger.consoleSuccess(action);\n }\n\n async installPackages() {\n if (this.ejectOptions.skipDependencyInstallation) return;\n this.logger.setStatusLine('Eject: installing packages using the package-manager');\n const packages = this.getPackagesToInstall();\n await this.install.install(packages);\n }\n\n getPackagesToInstall(): string[] {\n // the workspace-root component is not a package (never linked, never published), ejecting it only\n // untracks it. the name its id derives may belong to an unrelated package.\n return this.componentsToEject\n .filter((c) => c.componentMap?.rootDir !== WORKSPACE_ROOT_DIR)\n .map((c) => componentIdToPackageName(c));\n }\n\n _buildExceptionMessageWithRollbackData(action: string): string {\n return `eject failed ${action}.\nyour package.json (if existed) has been restored, however, some bit generated data may have been deleted, please run \"bit link\" to restore them.`;\n }\n\n /**\n * as part of the 'eject' operation, a component is removed locally. as opposed to the remove\n * command, in this case, no need to remove the objects from the scope, only remove from the\n * filesystem, which means, delete the component files, untrack from .bitmap and clean\n * package.json and bit.json traces.\n */\n private async removeComponentsFiles() {\n if (this.ejectOptions.keepFiles) {\n return;\n }\n this.logger.setStatusLine('Eject: removing the components files from the filesystem');\n const dataToPersist = new DataToPersist();\n this.componentsToEject.forEach((component) => {\n const componentMap = component.componentMap;\n if (!componentMap) {\n throw new Error('ComponentEjector.removeComponentsFiles expect a component to have componentMap prop');\n }\n const rootDir = componentMap.rootDir;\n if (!rootDir) {\n throw new Error('ComponentEjector.removeComponentsFiles expect a componentMap to have rootDir');\n }\n if (rootDir === WORKSPACE_ROOT_DIR) {\n // see the same guard in deleteComponentsFiles - removing this rootDir deletes the whole\n // workspace. the files it owns are the workspace's own, so ejecting it leaves them alone.\n return;\n }\n dataToPersist.removePath(new RemovePath(rootDir, true));\n });\n dataToPersist.addBasePath(this.consumer.getPath());\n await dataToPersist.persistAllToFS();\n this.logger.consoleSuccess();\n }\n\n private async untrackComponents() {\n this.logger.debug('eject: removing the components from the .bitmap');\n await this.consumer.cleanFromBitMap(this.idsToEject);\n }\n\n throwEjectError(message: string, originalError: Error) {\n const { message: originalErrorMessage } = defaultErrorHandler(originalError);\n this.logger.error(`eject has stopped due to an error ${originalErrorMessage}`, originalError);\n throw new Error(`${message}\n\ngot the following error: ${originalErrorMessage}`);\n }\n\n _validateIdsHaveScopesAndVersions() {\n this.idsToEject.forEach((id) => {\n if (!id.hasScope() || !id.hasVersion()) {\n throw new TypeError(`EjectComponents expects ids with scope and version, got ${id.toString()}`);\n }\n });\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_eject@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_eject@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_eject@1.0.1176/dist/eject.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_eject@1.0.1176/dist/eject.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/eject",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1176",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/workspace/eject",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.workspace",
|
|
8
8
|
"name": "eject",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1176"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "4.1.2",
|
|
13
|
-
"@teambit/cli": "0.0.1393",
|
|
14
13
|
"@teambit/component-id": "1.2.4",
|
|
15
|
-
"@teambit/
|
|
16
|
-
"@teambit/legacy.consumer-component": "0.0.165",
|
|
17
|
-
"@teambit/legacy.consumer": "0.0.164",
|
|
18
|
-
"@teambit/logger": "0.0.1486",
|
|
19
|
-
"@teambit/pkg.modules.component-package-name": "0.0.171",
|
|
20
|
-
"@teambit/scope.remotes": "0.0.164",
|
|
21
|
-
"@teambit/legacy.constants": "0.0.44",
|
|
14
|
+
"@teambit/legacy.constants": "0.0.45",
|
|
22
15
|
"@teambit/harmony": "0.4.12",
|
|
23
|
-
"@teambit/
|
|
24
|
-
"@teambit/
|
|
25
|
-
"@teambit/
|
|
16
|
+
"@teambit/cli": "0.0.1395",
|
|
17
|
+
"@teambit/component.sources": "0.0.218",
|
|
18
|
+
"@teambit/install": "1.0.1176",
|
|
19
|
+
"@teambit/legacy.bit-map": "0.0.223",
|
|
20
|
+
"@teambit/legacy.consumer-component": "0.0.167",
|
|
21
|
+
"@teambit/legacy.consumer": "0.0.166",
|
|
22
|
+
"@teambit/logger": "0.0.1488",
|
|
23
|
+
"@teambit/pkg.modules.component-package-name": "0.0.173",
|
|
24
|
+
"@teambit/remove": "1.0.1176",
|
|
25
|
+
"@teambit/scope.remotes": "0.0.166",
|
|
26
|
+
"@teambit/workspace": "1.0.1176"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@types/mocha": "9.1.0",
|