@teambit/remove 1.0.1173 → 1.0.1175
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.
|
@@ -18,6 +18,13 @@ function _component() {
|
|
|
18
18
|
};
|
|
19
19
|
return data;
|
|
20
20
|
}
|
|
21
|
+
function _legacy2() {
|
|
22
|
+
const data = require("@teambit/legacy.bit-map");
|
|
23
|
+
_legacy2 = function () {
|
|
24
|
+
return data;
|
|
25
|
+
};
|
|
26
|
+
return data;
|
|
27
|
+
}
|
|
21
28
|
async function deleteComponentsFiles(consumer, bitIds) {
|
|
22
29
|
_legacy().logger.debug(`deleteComponentsFiles, ids: ${bitIds.toString()}`);
|
|
23
30
|
const filesToDelete = getFilesToDelete();
|
|
@@ -36,6 +43,14 @@ async function deleteComponentsFiles(consumer, bitIds) {
|
|
|
36
43
|
}
|
|
37
44
|
const rootDir = componentMap.rootDir;
|
|
38
45
|
if (!rootDir) throw new Error(`rootDir is missing from ${id.toString()}`);
|
|
46
|
+
if (rootDir === _legacy2().WORKSPACE_ROOT_DIR) {
|
|
47
|
+
// this component's rootDir is the workspace itself. deleting it would wipe the entire
|
|
48
|
+
// workspace - every nested component, .git, .bit and the .bitmap that maps them all.
|
|
49
|
+
// its files are the workspace's own (workspace.jsonc, README, CI config), not component
|
|
50
|
+
// source, so untracking it must leave them in place.
|
|
51
|
+
_legacy().logger.debug(`deleteComponentsFiles, skipping the files of ${id.toString()}, it owns the workspace root`);
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
39
54
|
dataToPersist.removePath(new (_component().RemovePath)(rootDir, true));
|
|
40
55
|
});
|
|
41
56
|
return dataToPersist;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_legacy","data","require","_component","deleteComponentsFiles","consumer","bitIds","logger","debug","toString","filesToDelete","getFilesToDelete","addBasePath","getPath","persistAllToFS","dataToPersist","DataToPersist","forEach","id","ignoreVersion","scope","isLocal","hasVersion","componentMap","bitMap","getComponentIfExist","warn","rootDir","Error","removePath","RemovePath"],"sources":["delete-component-files.ts"],"sourcesContent":["import type { ComponentIdList } from '@teambit/component-id';\nimport { logger } from '@teambit/legacy.logger';\nimport { DataToPersist, RemovePath } from '@teambit/component.sources';\nimport type { Consumer } from '@teambit/legacy.consumer';\n\nexport async function deleteComponentsFiles(consumer: Consumer, bitIds: ComponentIdList) {\n logger.debug(`deleteComponentsFiles, ids: ${bitIds.toString()}`);\n const filesToDelete = getFilesToDelete();\n filesToDelete.addBasePath(consumer.getPath());\n return filesToDelete.persistAllToFS();\n\n function getFilesToDelete(): DataToPersist {\n const dataToPersist = new DataToPersist();\n bitIds.forEach((id) => {\n const ignoreVersion = consumer.scope.isLocal(id) || !id.hasVersion();\n const componentMap = consumer.bitMap.getComponentIfExist(id, { ignoreVersion });\n if (!componentMap) {\n logger.warn(\n `deleteComponentsFiles was unable to delete ${id.toString()} because the id is missing from bitmap`\n );\n return;\n }\n const rootDir = componentMap.rootDir;\n if (!rootDir) throw new Error(`rootDir is missing from ${id.toString()}`);\n dataToPersist.removePath(new RemovePath(rootDir, true));\n });\n return dataToPersist;\n }\n}\n"],"mappings":";;;;;;AACA,SAAAA,QAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,OAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAE,WAAA;EAAA,MAAAF,IAAA,GAAAC,OAAA;EAAAC,UAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,
|
|
1
|
+
{"version":3,"names":["_legacy","data","require","_component","_legacy2","deleteComponentsFiles","consumer","bitIds","logger","debug","toString","filesToDelete","getFilesToDelete","addBasePath","getPath","persistAllToFS","dataToPersist","DataToPersist","forEach","id","ignoreVersion","scope","isLocal","hasVersion","componentMap","bitMap","getComponentIfExist","warn","rootDir","Error","WORKSPACE_ROOT_DIR","removePath","RemovePath"],"sources":["delete-component-files.ts"],"sourcesContent":["import type { ComponentIdList } from '@teambit/component-id';\nimport { logger } from '@teambit/legacy.logger';\nimport { DataToPersist, RemovePath } from '@teambit/component.sources';\nimport { WORKSPACE_ROOT_DIR } from '@teambit/legacy.bit-map';\nimport type { Consumer } from '@teambit/legacy.consumer';\n\nexport async function deleteComponentsFiles(consumer: Consumer, bitIds: ComponentIdList) {\n logger.debug(`deleteComponentsFiles, ids: ${bitIds.toString()}`);\n const filesToDelete = getFilesToDelete();\n filesToDelete.addBasePath(consumer.getPath());\n return filesToDelete.persistAllToFS();\n\n function getFilesToDelete(): DataToPersist {\n const dataToPersist = new DataToPersist();\n bitIds.forEach((id) => {\n const ignoreVersion = consumer.scope.isLocal(id) || !id.hasVersion();\n const componentMap = consumer.bitMap.getComponentIfExist(id, { ignoreVersion });\n if (!componentMap) {\n logger.warn(\n `deleteComponentsFiles was unable to delete ${id.toString()} because the id is missing from bitmap`\n );\n return;\n }\n const rootDir = componentMap.rootDir;\n if (!rootDir) throw new Error(`rootDir is missing from ${id.toString()}`);\n if (rootDir === WORKSPACE_ROOT_DIR) {\n // this component's rootDir is the workspace itself. deleting it would wipe the entire\n // workspace - every nested component, .git, .bit and the .bitmap that maps them all.\n // its files are the workspace's own (workspace.jsonc, README, CI config), not component\n // source, so untracking it must leave them in place.\n logger.debug(`deleteComponentsFiles, skipping the files of ${id.toString()}, it owns the workspace root`);\n return;\n }\n dataToPersist.removePath(new RemovePath(rootDir, true));\n });\n return dataToPersist;\n }\n}\n"],"mappings":";;;;;;AACA,SAAAA,QAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,OAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAE,WAAA;EAAA,MAAAF,IAAA,GAAAC,OAAA;EAAAC,UAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,SAAA;EAAA,MAAAH,IAAA,GAAAC,OAAA;EAAAE,QAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,eAAeI,qBAAqBA,CAACC,QAAkB,EAAEC,MAAuB,EAAE;EACvFC,gBAAM,CAACC,KAAK,CAAC,+BAA+BF,MAAM,CAACG,QAAQ,CAAC,CAAC,EAAE,CAAC;EAChE,MAAMC,aAAa,GAAGC,gBAAgB,CAAC,CAAC;EACxCD,aAAa,CAACE,WAAW,CAACP,QAAQ,CAACQ,OAAO,CAAC,CAAC,CAAC;EAC7C,OAAOH,aAAa,CAACI,cAAc,CAAC,CAAC;EAErC,SAASH,gBAAgBA,CAAA,EAAkB;IACzC,MAAMI,aAAa,GAAG,KAAIC,0BAAa,EAAC,CAAC;IACzCV,MAAM,CAACW,OAAO,CAAEC,EAAE,IAAK;MACrB,MAAMC,aAAa,GAAGd,QAAQ,CAACe,KAAK,CAACC,OAAO,CAACH,EAAE,CAAC,IAAI,CAACA,EAAE,CAACI,UAAU,CAAC,CAAC;MACpE,MAAMC,YAAY,GAAGlB,QAAQ,CAACmB,MAAM,CAACC,mBAAmB,CAACP,EAAE,EAAE;QAAEC;MAAc,CAAC,CAAC;MAC/E,IAAI,CAACI,YAAY,EAAE;QACjBhB,gBAAM,CAACmB,IAAI,CACT,8CAA8CR,EAAE,CAACT,QAAQ,CAAC,CAAC,wCAC7D,CAAC;QACD;MACF;MACA,MAAMkB,OAAO,GAAGJ,YAAY,CAACI,OAAO;MACpC,IAAI,CAACA,OAAO,EAAE,MAAM,IAAIC,KAAK,CAAC,2BAA2BV,EAAE,CAACT,QAAQ,CAAC,CAAC,EAAE,CAAC;MACzE,IAAIkB,OAAO,KAAKE,6BAAkB,EAAE;QAClC;QACA;QACA;QACA;QACAtB,gBAAM,CAACC,KAAK,CAAC,gDAAgDU,EAAE,CAACT,QAAQ,CAAC,CAAC,8BAA8B,CAAC;QACzG;MACF;MACAM,aAAa,CAACe,UAAU,CAAC,KAAIC,uBAAU,EAACJ,OAAO,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC,CAAC;IACF,OAAOZ,aAAa;EACtB;AACF","ignoreList":[]}
|
|
@@ -83,12 +83,19 @@ function _deleteComponentFiles() {
|
|
|
83
83
|
return data;
|
|
84
84
|
}
|
|
85
85
|
function _legacy3() {
|
|
86
|
-
const data = require("@teambit/legacy.
|
|
86
|
+
const data = require("@teambit/legacy.bit-map");
|
|
87
87
|
_legacy3 = function () {
|
|
88
88
|
return data;
|
|
89
89
|
};
|
|
90
90
|
return data;
|
|
91
91
|
}
|
|
92
|
+
function _legacy4() {
|
|
93
|
+
const data = require("@teambit/legacy.component-list");
|
|
94
|
+
_legacy4 = function () {
|
|
95
|
+
return data;
|
|
96
|
+
};
|
|
97
|
+
return data;
|
|
98
|
+
}
|
|
92
99
|
function _pMapSeries() {
|
|
93
100
|
const data = _interopRequireDefault(require("p-map-series"));
|
|
94
101
|
_pMapSeries = function () {
|
|
@@ -96,9 +103,9 @@ function _pMapSeries() {
|
|
|
96
103
|
};
|
|
97
104
|
return data;
|
|
98
105
|
}
|
|
99
|
-
function
|
|
106
|
+
function _legacy5() {
|
|
100
107
|
const data = require("@teambit/legacy.consumer-component");
|
|
101
|
-
|
|
108
|
+
_legacy5 = function () {
|
|
102
109
|
return data;
|
|
103
110
|
};
|
|
104
111
|
return data;
|
|
@@ -206,7 +213,7 @@ async function removeLocal(workspace, bitIds, force, track, deleteFiles) {
|
|
|
206
213
|
if (componentStatus.modified) modifiedComponents.push(id);else nonModifiedComponents.push(id);
|
|
207
214
|
} catch (err) {
|
|
208
215
|
// if a component has an error, such as, missing main file, we do want to allow removing that component
|
|
209
|
-
if (
|
|
216
|
+
if (_legacy5().ConsumerComponent.isComponentInvalidByErrorType(err)) {
|
|
210
217
|
nonModifiedComponents.push(id);
|
|
211
218
|
} else {
|
|
212
219
|
throw err;
|
|
@@ -228,7 +235,7 @@ If you understand the risks and wish to proceed with the removal, please use the
|
|
|
228
235
|
}
|
|
229
236
|
}
|
|
230
237
|
const idsToRemove = force ? bitIds : nonModifiedComponents;
|
|
231
|
-
const componentsList = new (
|
|
238
|
+
const componentsList = new (_legacy4().ComponentsList)(workspace);
|
|
232
239
|
const newComponents = await componentsList.listNewComponents(false);
|
|
233
240
|
const idsToRemoveFromScope = _componentId().ComponentIdList.fromArray(idsToRemove.filter(id => !newComponents.hasWithoutVersion(id)));
|
|
234
241
|
const idsToCleanFromWorkspace = _componentId().ComponentIdList.fromArray(idsToRemove.filter(id => newComponents.hasWithoutVersion(id)));
|
|
@@ -246,8 +253,10 @@ If you understand the risks and wish to proceed with the removal, please use the
|
|
|
246
253
|
if (deleteFiles) await (0, _deleteComponentFiles().deleteComponentsFiles)(consumer, idsToCleanFromWorkspace);
|
|
247
254
|
if (!track) {
|
|
248
255
|
const removedComponents = componentsToRemove.filter(c => idsToCleanFromWorkspace.hasWithoutVersion(c.id));
|
|
249
|
-
|
|
250
|
-
|
|
256
|
+
// the root is untracked only. it was never a package, see withoutWorkspaceRoot.
|
|
257
|
+
const packageComponents = withoutWorkspaceRoot(consumer, removedComponents);
|
|
258
|
+
await consumer.packageJson.removeComponentsFromDependencies(packageComponents);
|
|
259
|
+
await removeComponentsFromNodeModules(consumer, packageComponents);
|
|
251
260
|
await consumer.cleanFromBitMap(idsToCleanFromWorkspace);
|
|
252
261
|
await workspace.cleanFromConfig(idsToCleanFromWorkspace);
|
|
253
262
|
await workspace.removeFromStagedConfig(idsToCleanFromWorkspace);
|
|
@@ -255,9 +264,21 @@ If you understand the risks and wish to proceed with the removal, please use the
|
|
|
255
264
|
}
|
|
256
265
|
return new (_removedLocalObjects().RemovedLocalObjects)(_componentId().ComponentIdList.uniqFromArray([...idsToCleanFromWorkspace, ...removedComponentIds]), missingComponents, modifiedComponents, dependentBits, removedFromLane);
|
|
257
266
|
}
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* the workspace-root component is never installed nor linked - it is the workspace, not a package - so
|
|
270
|
+
* there is nothing of it to remove from the manifests or from node_modules, and the package name its
|
|
271
|
+
* id derives may belong to a dependency of the same name.
|
|
272
|
+
*/
|
|
273
|
+
function withoutWorkspaceRoot(consumer, components) {
|
|
274
|
+
return components.filter(c => consumer.bitMap.getComponentIfExist(c.id, {
|
|
275
|
+
ignoreVersion: true
|
|
276
|
+
})?.rootDir !== _legacy3().WORKSPACE_ROOT_DIR);
|
|
277
|
+
}
|
|
258
278
|
async function removeComponentsFromNodeModules(consumer, components) {
|
|
259
279
|
_legacy2().logger.debug(`removeComponentsFromNodeModules: ${components.map(c => c.id.toString()).join(', ')}`);
|
|
260
|
-
const
|
|
280
|
+
const linkedComponents = withoutWorkspaceRoot(consumer, components);
|
|
281
|
+
const pathsToRemoveWithNulls = linkedComponents.map(c => {
|
|
261
282
|
return (0, _pkgModules().getNodeModulesPathOfComponent)(_objectSpread(_objectSpread({}, c), {}, {
|
|
262
283
|
id: c.id
|
|
263
284
|
}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_fsExtra","data","_interopRequireDefault","require","_groupArray","_lodash","_componentId","_lodash2","_legacy","_bitError","_legacy2","_scope","_scope2","_deleteComponentFiles","_legacy3","_pMapSeries","_legacy4","_pkgModules","_removedLocalObjects","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","removeComponents","workspace","ids","force","remote","track","deleteFiles","logger","debugAndAddBreadCrumb","toString","bitIdsLatest","ComponentIdList","fromArray","map","id","changeVersion","LATEST_BIT_VERSION","localIds","remoteIds","partition","isLocal","BitError","join","remoteResult","isEmpty","removeRemote","localResult","removeLocal","RemovedLocalObjects","bitIds","groupedBitsByScope","groupArray","remotes","scope","getRemoteScopes","Remotes","getGlobalRemotes","shouldGoToCentralHub","http","Http","connect","CENTRAL_BIT_HUB_URL","CENTRAL_BIT_HUB_NAME","deleteViaCentralHub","idsAreLanes","context","removeP","key","resolvedRemote","resolve","idsStr","toStringWithoutVersion","deleteMany","Promise","all","consumer","modifiedComponents","nonModifiedComponents","newIds","pMapSeries","componentStatus","getComponentStatusById","newlyCreated","modified","err","ConsumerComponent","isComponentInvalidByErrorType","list","listWithInvalid","components","c","hasWithoutVersion","aspectIds","state","aspects","used","find","newId","includes","idsToRemove","componentsList","ComponentsList","newComponents","listNewComponents","idsToRemoveFromScope","idsToCleanFromWorkspace","workspaceComponents","getMany","undefined","componentsToRemove","workspaceComponent","_consumer","removedComponentIds","missingComponents","dependentBits","removedFromLane","removeMany","deleteComponentsFiles","removedComponents","packageJson","removeComponentsFromDependencies","removeComponentsFromNodeModules","cleanFromBitMap","cleanFromConfig","removeFromStagedConfig","uniqFromArray","debug","pathsToRemoveWithNulls","getNodeModulesPathOfComponent","pathsToRemove","compact","componentPath","fs","remove","toAbsolutePath"],"sources":["remove-components.ts"],"sourcesContent":["import fs from 'fs-extra';\nimport groupArray from 'group-array';\nimport partition from 'lodash.partition';\nimport type { Workspace } from '@teambit/workspace';\nimport { ComponentIdList } from '@teambit/component-id';\nimport { compact, isEmpty } from 'lodash';\nimport { CENTRAL_BIT_HUB_NAME, CENTRAL_BIT_HUB_URL, LATEST_BIT_VERSION } from '@teambit/legacy.constants';\nimport { BitError } from '@teambit/bit-error';\nimport { logger } from '@teambit/legacy.logger';\nimport { Http } from '@teambit/scope.network';\nimport { Remotes } from '@teambit/scope.remotes';\nimport { deleteComponentsFiles } from './delete-component-files';\nimport { ComponentsList } from '@teambit/legacy.component-list';\nimport type { RemovedObjects } from '@teambit/legacy.scope';\nimport pMapSeries from 'p-map-series';\nimport type { Consumer } from '@teambit/legacy.consumer';\nimport { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport { getNodeModulesPathOfComponent } from '@teambit/pkg.modules.component-package-name';\nimport { RemovedLocalObjects } from './removed-local-objects';\n\nexport type RemoveComponentsResult = { localResult: RemovedLocalObjects; remoteResult: RemovedObjects[] };\n\n/**\n * Remove components local and remote\n * splits array of ids into local and remote and removes according to flags\n * @param {string[]} ids - list of remote component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n * @param {boolean} remote - delete component from a remote scope\n * @param {boolean} track - keep tracking local staged components in bitmap.\n * @param {boolean} deleteFiles - delete local added files from fs.\n */\nexport async function removeComponents({\n workspace,\n ids,\n force,\n remote,\n track,\n deleteFiles,\n}: {\n workspace?: Workspace; // when remote is false, it's always set\n ids: ComponentIdList;\n force: boolean;\n remote: boolean;\n track: boolean;\n deleteFiles: boolean;\n}): Promise<RemoveComponentsResult> {\n logger.debugAndAddBreadCrumb('removeComponents', `{ids}. force: ${force.toString()}`, { ids: ids.toString() });\n // added this to remove support for remove only one version from a component\n const bitIdsLatest = ComponentIdList.fromArray(\n ids.map((id) => {\n return id.changeVersion(LATEST_BIT_VERSION);\n })\n );\n const [localIds, remoteIds] = partition(bitIdsLatest, (id) => id.isLocal());\n if (remote && localIds.length) {\n throw new BitError(\n `unable to remove the remote components: ${localIds.join(',')} as they don't contain a scope-name`\n );\n }\n const remoteResult = remote && !isEmpty(remoteIds) ? await removeRemote(workspace, remoteIds, force) : [];\n const localResult = !remote\n ? await removeLocal(workspace as Workspace, bitIdsLatest, force, track, deleteFiles)\n : new RemovedLocalObjects();\n\n return { localResult, remoteResult };\n}\n\n/**\n * Remove remote component from the remote\n * this method groups remote components by remote name and deletes remote components together\n * @param {ComponentIdList} bitIds - list of remote component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n */\nasync function removeRemote(\n workspace: Workspace | undefined,\n bitIds: ComponentIdList,\n force: boolean\n): Promise<RemovedObjects[]> {\n const groupedBitsByScope = groupArray(bitIds, 'scope');\n const remotes = workspace ? await workspace.scope.getRemoteScopes() : await Remotes.getGlobalRemotes();\n const shouldGoToCentralHub = remotes.shouldGoToCentralHub(Object.keys(groupedBitsByScope));\n if (shouldGoToCentralHub) {\n const http = await Http.connect(CENTRAL_BIT_HUB_URL, CENTRAL_BIT_HUB_NAME);\n return http.deleteViaCentralHub(\n bitIds.map((id) => id.toString()),\n { force, idsAreLanes: false }\n );\n }\n const context = {};\n const removeP = Object.keys(groupedBitsByScope).map(async (key) => {\n const resolvedRemote = await remotes.resolve(key);\n const idsStr = groupedBitsByScope[key].map((id) => id.toStringWithoutVersion());\n return resolvedRemote.deleteMany(idsStr, force, context);\n });\n\n return Promise.all(removeP);\n}\n\n/**\n * removeLocal - remove local (imported, new staged components) from modules and bitmap according to flags\n * @param {ComponentIdList} bitIds - list of component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n * @param {boolean} deleteFiles - delete component that are used by other components.\n */\nasync function removeLocal(\n workspace: Workspace,\n bitIds: ComponentIdList,\n force: boolean,\n track: boolean,\n deleteFiles: boolean\n): Promise<RemovedLocalObjects> {\n const consumer = workspace.consumer;\n // local remove in case user wants to delete tagged components\n const modifiedComponents = new ComponentIdList();\n const nonModifiedComponents = new ComponentIdList();\n if (!bitIds.length) return new RemovedLocalObjects();\n if (!force) {\n const newIds: string[] = [];\n await pMapSeries(bitIds, async (id) => {\n try {\n const componentStatus = await workspace.getComponentStatusById(id);\n if (componentStatus.newlyCreated) newIds.push(id.toStringWithoutVersion());\n if (componentStatus.modified) modifiedComponents.push(id);\n else nonModifiedComponents.push(id);\n } catch (err: any) {\n // if a component has an error, such as, missing main file, we do want to allow removing that component\n if (ConsumerComponent.isComponentInvalidByErrorType(err)) {\n nonModifiedComponents.push(id);\n } else {\n throw err;\n }\n }\n });\n if (newIds.length) {\n const list = await workspace.listWithInvalid();\n list.components.forEach((c) => {\n if (bitIds.hasWithoutVersion(c.id)) return; // it gets deleted anyway\n const aspectIds = c.state.aspects.ids;\n const used = newIds.find((newId) => aspectIds.includes(newId));\n if (used)\n throw new BitError(`Unable to remove ${c.id.toStringWithoutVersion()}.\nThis component is 1) an aspect 2) is used by other components, such as \"${c.id.toStringWithoutVersion()}\" 3) it's a new component so it can't be installed as a package.\nRemoving this component from the workspace will disrupt the functionality of other components that depend on it, and resolving these issues may not be straightforward.\nIf you understand the risks and wish to proceed with the removal, please use the --force flag.\n`);\n });\n }\n }\n const idsToRemove = force ? bitIds : nonModifiedComponents;\n const componentsList = new ComponentsList(workspace);\n const newComponents = (await componentsList.listNewComponents(false)) as ComponentIdList;\n const idsToRemoveFromScope = ComponentIdList.fromArray(\n idsToRemove.filter((id) => !newComponents.hasWithoutVersion(id))\n );\n const idsToCleanFromWorkspace = ComponentIdList.fromArray(\n idsToRemove.filter((id) => newComponents.hasWithoutVersion(id))\n );\n const workspaceComponents = await workspace.getMany(idsToRemove, undefined, false);\n const componentsToRemove = workspaceComponents.map((workspaceComponent) => workspaceComponent.state._consumer);\n const { removedComponentIds, missingComponents, dependentBits, removedFromLane } = await consumer.scope.removeMany(\n idsToRemoveFromScope,\n force,\n consumer\n );\n // otherwise, components should still be in .bitmap file\n idsToCleanFromWorkspace.push(...removedComponentIds);\n if (idsToCleanFromWorkspace.length) {\n if (deleteFiles) await deleteComponentsFiles(consumer, idsToCleanFromWorkspace);\n if (!track) {\n const removedComponents = componentsToRemove.filter((c) => idsToCleanFromWorkspace.hasWithoutVersion(c.id));\n await consumer.packageJson.removeComponentsFromDependencies(removedComponents);\n await removeComponentsFromNodeModules(consumer, removedComponents);\n await consumer.cleanFromBitMap(idsToCleanFromWorkspace);\n await workspace.cleanFromConfig(idsToCleanFromWorkspace);\n await workspace.removeFromStagedConfig(idsToCleanFromWorkspace);\n }\n }\n return new RemovedLocalObjects(\n ComponentIdList.uniqFromArray([...idsToCleanFromWorkspace, ...removedComponentIds]),\n missingComponents,\n modifiedComponents,\n dependentBits,\n removedFromLane\n );\n}\n\nexport async function removeComponentsFromNodeModules(consumer: Consumer, components: ConsumerComponent[]) {\n logger.debug(`removeComponentsFromNodeModules: ${components.map((c) => c.id.toString()).join(', ')}`);\n const pathsToRemoveWithNulls = components.map((c) => {\n return getNodeModulesPathOfComponent({ ...c, id: c.id });\n });\n const pathsToRemove = compact(pathsToRemoveWithNulls);\n logger.debug(`deleting the following paths: ${pathsToRemove.join('\\n')}`);\n return Promise.all(pathsToRemove.map((componentPath) => fs.remove(consumer.toAbsolutePath(componentPath))));\n}\n"],"mappings":";;;;;;;AAAA,SAAAA,SAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,QAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,YAAA;EAAA,MAAAH,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAC,WAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,QAAA;EAAA,MAAAJ,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAE,OAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAK,aAAA;EAAA,MAAAL,IAAA,GAAAE,OAAA;EAAAG,YAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAM,SAAA;EAAA,MAAAN,IAAA,GAAAE,OAAA;EAAAI,QAAA,YAAAA,CAAA;IAAA,OAAAN,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAO,QAAA;EAAA,MAAAP,IAAA,GAAAE,OAAA;EAAAK,OAAA,YAAAA,CAAA;IAAA,OAAAP,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAQ,UAAA;EAAA,MAAAR,IAAA,GAAAE,OAAA;EAAAM,SAAA,YAAAA,CAAA;IAAA,OAAAR,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAS,SAAA;EAAA,MAAAT,IAAA,GAAAE,OAAA;EAAAO,QAAA,YAAAA,CAAA;IAAA,OAAAT,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAU,OAAA;EAAA,MAAAV,IAAA,GAAAE,OAAA;EAAAQ,MAAA,YAAAA,CAAA;IAAA,OAAAV,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAW,QAAA;EAAA,MAAAX,IAAA,GAAAE,OAAA;EAAAS,OAAA,YAAAA,CAAA;IAAA,OAAAX,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAY,sBAAA;EAAA,MAAAZ,IAAA,GAAAE,OAAA;EAAAU,qBAAA,YAAAA,CAAA;IAAA,OAAAZ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAa,SAAA;EAAA,MAAAb,IAAA,GAAAE,OAAA;EAAAW,QAAA,YAAAA,CAAA;IAAA,OAAAb,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAc,YAAA;EAAA,MAAAd,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAY,WAAA,YAAAA,CAAA;IAAA,OAAAd,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAe,SAAA;EAAA,MAAAf,IAAA,GAAAE,OAAA;EAAAa,QAAA,YAAAA,CAAA;IAAA,OAAAf,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAgB,YAAA;EAAA,MAAAhB,IAAA,GAAAE,OAAA;EAAAc,WAAA,YAAAA,CAAA;IAAA,OAAAhB,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAiB,qBAAA;EAAA,MAAAjB,IAAA,GAAAE,OAAA;EAAAe,oBAAA,YAAAA,CAAA;IAAA,OAAAjB,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAA8D,SAAAC,uBAAAiB,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,QAAAH,CAAA,EAAAI,CAAA,QAAAC,CAAA,GAAAC,MAAA,CAAAC,IAAA,CAAAP,CAAA,OAAAM,MAAA,CAAAE,qBAAA,QAAAC,CAAA,GAAAH,MAAA,CAAAE,qBAAA,CAAAR,CAAA,GAAAI,CAAA,KAAAK,CAAA,GAAAA,CAAA,CAAAC,MAAA,WAAAN,CAAA,WAAAE,MAAA,CAAAK,wBAAA,CAAAX,CAAA,EAAAI,CAAA,EAAAQ,UAAA,OAAAP,CAAA,CAAAQ,IAAA,CAAAC,KAAA,CAAAT,CAAA,EAAAI,CAAA,YAAAJ,CAAA;AAAA,SAAAU,cAAAf,CAAA,aAAAI,CAAA,MAAAA,CAAA,GAAAY,SAAA,CAAAC,MAAA,EAAAb,CAAA,UAAAC,CAAA,WAAAW,SAAA,CAAAZ,CAAA,IAAAY,SAAA,CAAAZ,CAAA,QAAAA,CAAA,OAAAD,OAAA,CAAAG,MAAA,CAAAD,CAAA,OAAAa,OAAA,WAAAd,CAAA,IAAAe,eAAA,CAAAnB,CAAA,EAAAI,CAAA,EAAAC,CAAA,CAAAD,CAAA,SAAAE,MAAA,CAAAc,yBAAA,GAAAd,MAAA,CAAAe,gBAAA,CAAArB,CAAA,EAAAM,MAAA,CAAAc,yBAAA,CAAAf,CAAA,KAAAF,OAAA,CAAAG,MAAA,CAAAD,CAAA,GAAAa,OAAA,WAAAd,CAAA,IAAAE,MAAA,CAAAgB,cAAA,CAAAtB,CAAA,EAAAI,CAAA,EAAAE,MAAA,CAAAK,wBAAA,CAAAN,CAAA,EAAAD,CAAA,iBAAAJ,CAAA;AAAA,SAAAmB,gBAAAnB,CAAA,EAAAI,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAmB,cAAA,CAAAnB,CAAA,MAAAJ,CAAA,GAAAM,MAAA,CAAAgB,cAAA,CAAAtB,CAAA,EAAAI,CAAA,IAAAoB,KAAA,EAAAnB,CAAA,EAAAO,UAAA,MAAAa,YAAA,MAAAC,QAAA,UAAA1B,CAAA,CAAAI,CAAA,IAAAC,CAAA,EAAAL,CAAA;AAAA,SAAAuB,eAAAlB,CAAA,QAAAsB,CAAA,GAAAC,YAAA,CAAAvB,CAAA,uCAAAsB,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAvB,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAL,CAAA,GAAAK,CAAA,CAAAwB,MAAA,CAAAC,WAAA,kBAAA9B,CAAA,QAAA2B,CAAA,GAAA3B,CAAA,CAAA+B,IAAA,CAAA1B,CAAA,EAAAD,CAAA,uCAAAuB,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAA5B,CAAA,GAAA6B,MAAA,GAAAC,MAAA,EAAA7B,CAAA;AAI9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,eAAe8B,gBAAgBA,CAAC;EACrCC,SAAS;EACTC,GAAG;EACHC,KAAK;EACLC,MAAM;EACNC,KAAK;EACLC;AAQF,CAAC,EAAmC;EAClCC,iBAAM,CAACC,qBAAqB,CAAC,kBAAkB,EAAE,iBAAiBL,KAAK,CAACM,QAAQ,CAAC,CAAC,EAAE,EAAE;IAAEP,GAAG,EAAEA,GAAG,CAACO,QAAQ,CAAC;EAAE,CAAC,CAAC;EAC9G;EACA,MAAMC,YAAY,GAAGC,8BAAe,CAACC,SAAS,CAC5CV,GAAG,CAACW,GAAG,CAAEC,EAAE,IAAK;IACd,OAAOA,EAAE,CAACC,aAAa,CAACC,4BAAkB,CAAC;EAC7C,CAAC,CACH,CAAC;EACD,MAAM,CAACC,QAAQ,EAAEC,SAAS,CAAC,GAAG,IAAAC,iBAAS,EAACT,YAAY,EAAGI,EAAE,IAAKA,EAAE,CAACM,OAAO,CAAC,CAAC,CAAC;EAC3E,IAAIhB,MAAM,IAAIa,QAAQ,CAACnC,MAAM,EAAE;IAC7B,MAAM,KAAIuC,oBAAQ,EAChB,2CAA2CJ,QAAQ,CAACK,IAAI,CAAC,GAAG,CAAC,qCAC/D,CAAC;EACH;EACA,MAAMC,YAAY,GAAGnB,MAAM,IAAI,CAAC,IAAAoB,kBAAO,EAACN,SAAS,CAAC,GAAG,MAAMO,YAAY,CAACxB,SAAS,EAAEiB,SAAS,EAAEf,KAAK,CAAC,GAAG,EAAE;EACzG,MAAMuB,WAAW,GAAG,CAACtB,MAAM,GACvB,MAAMuB,WAAW,CAAC1B,SAAS,EAAeS,YAAY,EAAEP,KAAK,EAAEE,KAAK,EAAEC,WAAW,CAAC,GAClF,KAAIsB,0CAAmB,EAAC,CAAC;EAE7B,OAAO;IAAEF,WAAW;IAAEH;EAAa,CAAC;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAeE,YAAYA,CACzBxB,SAAgC,EAChC4B,MAAuB,EACvB1B,KAAc,EACa;EAC3B,MAAM2B,kBAAkB,GAAG,IAAAC,qBAAU,EAACF,MAAM,EAAE,OAAO,CAAC;EACtD,MAAMG,OAAO,GAAG/B,SAAS,GAAG,MAAMA,SAAS,CAACgC,KAAK,CAACC,eAAe,CAAC,CAAC,GAAG,MAAMC,iBAAO,CAACC,gBAAgB,CAAC,CAAC;EACtG,MAAMC,oBAAoB,GAAGL,OAAO,CAACK,oBAAoB,CAAClE,MAAM,CAACC,IAAI,CAAC0D,kBAAkB,CAAC,CAAC;EAC1F,IAAIO,oBAAoB,EAAE;IACxB,MAAMC,IAAI,GAAG,MAAMC,aAAI,CAACC,OAAO,CAACC,6BAAmB,EAAEC,8BAAoB,CAAC;IAC1E,OAAOJ,IAAI,CAACK,mBAAmB,CAC7Bd,MAAM,CAAChB,GAAG,CAAEC,EAAE,IAAKA,EAAE,CAACL,QAAQ,CAAC,CAAC,CAAC,EACjC;MAAEN,KAAK;MAAEyC,WAAW,EAAE;IAAM,CAC9B,CAAC;EACH;EACA,MAAMC,OAAO,GAAG,CAAC,CAAC;EAClB,MAAMC,OAAO,GAAG3E,MAAM,CAACC,IAAI,CAAC0D,kBAAkB,CAAC,CAACjB,GAAG,CAAC,MAAOkC,GAAG,IAAK;IACjE,MAAMC,cAAc,GAAG,MAAMhB,OAAO,CAACiB,OAAO,CAACF,GAAG,CAAC;IACjD,MAAMG,MAAM,GAAGpB,kBAAkB,CAACiB,GAAG,CAAC,CAAClC,GAAG,CAAEC,EAAE,IAAKA,EAAE,CAACqC,sBAAsB,CAAC,CAAC,CAAC;IAC/E,OAAOH,cAAc,CAACI,UAAU,CAACF,MAAM,EAAE/C,KAAK,EAAE0C,OAAO,CAAC;EAC1D,CAAC,CAAC;EAEF,OAAOQ,OAAO,CAACC,GAAG,CAACR,OAAO,CAAC;AAC7B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAenB,WAAWA,CACxB1B,SAAoB,EACpB4B,MAAuB,EACvB1B,KAAc,EACdE,KAAc,EACdC,WAAoB,EACU;EAC9B,MAAMiD,QAAQ,GAAGtD,SAAS,CAACsD,QAAQ;EACnC;EACA,MAAMC,kBAAkB,GAAG,KAAI7C,8BAAe,EAAC,CAAC;EAChD,MAAM8C,qBAAqB,GAAG,KAAI9C,8BAAe,EAAC,CAAC;EACnD,IAAI,CAACkB,MAAM,CAAC/C,MAAM,EAAE,OAAO,KAAI8C,0CAAmB,EAAC,CAAC;EACpD,IAAI,CAACzB,KAAK,EAAE;IACV,MAAMuD,MAAgB,GAAG,EAAE;IAC3B,MAAM,IAAAC,qBAAU,EAAC9B,MAAM,EAAE,MAAOf,EAAE,IAAK;MACrC,IAAI;QACF,MAAM8C,eAAe,GAAG,MAAM3D,SAAS,CAAC4D,sBAAsB,CAAC/C,EAAE,CAAC;QAClE,IAAI8C,eAAe,CAACE,YAAY,EAAEJ,MAAM,CAAChF,IAAI,CAACoC,EAAE,CAACqC,sBAAsB,CAAC,CAAC,CAAC;QAC1E,IAAIS,eAAe,CAACG,QAAQ,EAAEP,kBAAkB,CAAC9E,IAAI,CAACoC,EAAE,CAAC,CAAC,KACrD2C,qBAAqB,CAAC/E,IAAI,CAACoC,EAAE,CAAC;MACrC,CAAC,CAAC,OAAOkD,GAAQ,EAAE;QACjB;QACA,IAAIC,4BAAiB,CAACC,6BAA6B,CAACF,GAAG,CAAC,EAAE;UACxDP,qBAAqB,CAAC/E,IAAI,CAACoC,EAAE,CAAC;QAChC,CAAC,MAAM;UACL,MAAMkD,GAAG;QACX;MACF;IACF,CAAC,CAAC;IACF,IAAIN,MAAM,CAAC5E,MAAM,EAAE;MACjB,MAAMqF,IAAI,GAAG,MAAMlE,SAAS,CAACmE,eAAe,CAAC,CAAC;MAC9CD,IAAI,CAACE,UAAU,CAACtF,OAAO,CAAEuF,CAAC,IAAK;QAC7B,IAAIzC,MAAM,CAAC0C,iBAAiB,CAACD,CAAC,CAACxD,EAAE,CAAC,EAAE,OAAO,CAAC;QAC5C,MAAM0D,SAAS,GAAGF,CAAC,CAACG,KAAK,CAACC,OAAO,CAACxE,GAAG;QACrC,MAAMyE,IAAI,GAAGjB,MAAM,CAACkB,IAAI,CAAEC,KAAK,IAAKL,SAAS,CAACM,QAAQ,CAACD,KAAK,CAAC,CAAC;QAC9D,IAAIF,IAAI,EACN,MAAM,KAAItD,oBAAQ,EAAC,oBAAoBiD,CAAC,CAACxD,EAAE,CAACqC,sBAAsB,CAAC,CAAC;AAC9E,0EAA0EmB,CAAC,CAACxD,EAAE,CAACqC,sBAAsB,CAAC,CAAC;AACvG;AACA;AACA,CAAC,CAAC;MACI,CAAC,CAAC;IACJ;EACF;EACA,MAAM4B,WAAW,GAAG5E,KAAK,GAAG0B,MAAM,GAAG4B,qBAAqB;EAC1D,MAAMuB,cAAc,GAAG,KAAIC,yBAAc,EAAChF,SAAS,CAAC;EACpD,MAAMiF,aAAa,GAAI,MAAMF,cAAc,CAACG,iBAAiB,CAAC,KAAK,CAAqB;EACxF,MAAMC,oBAAoB,GAAGzE,8BAAe,CAACC,SAAS,CACpDmE,WAAW,CAACxG,MAAM,CAAEuC,EAAE,IAAK,CAACoE,aAAa,CAACX,iBAAiB,CAACzD,EAAE,CAAC,CACjE,CAAC;EACD,MAAMuE,uBAAuB,GAAG1E,8BAAe,CAACC,SAAS,CACvDmE,WAAW,CAACxG,MAAM,CAAEuC,EAAE,IAAKoE,aAAa,CAACX,iBAAiB,CAACzD,EAAE,CAAC,CAChE,CAAC;EACD,MAAMwE,mBAAmB,GAAG,MAAMrF,SAAS,CAACsF,OAAO,CAACR,WAAW,EAAES,SAAS,EAAE,KAAK,CAAC;EAClF,MAAMC,kBAAkB,GAAGH,mBAAmB,CAACzE,GAAG,CAAE6E,kBAAkB,IAAKA,kBAAkB,CAACjB,KAAK,CAACkB,SAAS,CAAC;EAC9G,MAAM;IAAEC,mBAAmB;IAAEC,iBAAiB;IAAEC,aAAa;IAAEC;EAAgB,CAAC,GAAG,MAAMxC,QAAQ,CAACtB,KAAK,CAAC+D,UAAU,CAChHZ,oBAAoB,EACpBjF,KAAK,EACLoD,QACF,CAAC;EACD;EACA8B,uBAAuB,CAAC3G,IAAI,CAAC,GAAGkH,mBAAmB,CAAC;EACpD,IAAIP,uBAAuB,CAACvG,MAAM,EAAE;IAClC,IAAIwB,WAAW,EAAE,MAAM,IAAA2F,6CAAqB,EAAC1C,QAAQ,EAAE8B,uBAAuB,CAAC;IAC/E,IAAI,CAAChF,KAAK,EAAE;MACV,MAAM6F,iBAAiB,GAAGT,kBAAkB,CAAClH,MAAM,CAAE+F,CAAC,IAAKe,uBAAuB,CAACd,iBAAiB,CAACD,CAAC,CAACxD,EAAE,CAAC,CAAC;MAC3G,MAAMyC,QAAQ,CAAC4C,WAAW,CAACC,gCAAgC,CAACF,iBAAiB,CAAC;MAC9E,MAAMG,+BAA+B,CAAC9C,QAAQ,EAAE2C,iBAAiB,CAAC;MAClE,MAAM3C,QAAQ,CAAC+C,eAAe,CAACjB,uBAAuB,CAAC;MACvD,MAAMpF,SAAS,CAACsG,eAAe,CAAClB,uBAAuB,CAAC;MACxD,MAAMpF,SAAS,CAACuG,sBAAsB,CAACnB,uBAAuB,CAAC;IACjE;EACF;EACA,OAAO,KAAIzD,0CAAmB,EAC5BjB,8BAAe,CAAC8F,aAAa,CAAC,CAAC,GAAGpB,uBAAuB,EAAE,GAAGO,mBAAmB,CAAC,CAAC,EACnFC,iBAAiB,EACjBrC,kBAAkB,EAClBsC,aAAa,EACbC,eACF,CAAC;AACH;AAEO,eAAeM,+BAA+BA,CAAC9C,QAAkB,EAAEc,UAA+B,EAAE;EACzG9D,iBAAM,CAACmG,KAAK,CAAC,oCAAoCrC,UAAU,CAACxD,GAAG,CAAEyD,CAAC,IAAKA,CAAC,CAACxD,EAAE,CAACL,QAAQ,CAAC,CAAC,CAAC,CAACa,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;EACrG,MAAMqF,sBAAsB,GAAGtC,UAAU,CAACxD,GAAG,CAAEyD,CAAC,IAAK;IACnD,OAAO,IAAAsC,2CAA6B,EAAAhI,aAAA,CAAAA,aAAA,KAAM0F,CAAC;MAAExD,EAAE,EAAEwD,CAAC,CAACxD;IAAE,EAAE,CAAC;EAC1D,CAAC,CAAC;EACF,MAAM+F,aAAa,GAAG,IAAAC,kBAAO,EAACH,sBAAsB,CAAC;EACrDpG,iBAAM,CAACmG,KAAK,CAAC,iCAAiCG,aAAa,CAACvF,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;EACzE,OAAO+B,OAAO,CAACC,GAAG,CAACuD,aAAa,CAAChG,GAAG,CAAEkG,aAAa,IAAKC,kBAAE,CAACC,MAAM,CAAC1D,QAAQ,CAAC2D,cAAc,CAACH,aAAa,CAAC,CAAC,CAAC,CAAC;AAC7G","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_fsExtra","data","_interopRequireDefault","require","_groupArray","_lodash","_componentId","_lodash2","_legacy","_bitError","_legacy2","_scope","_scope2","_deleteComponentFiles","_legacy3","_legacy4","_pMapSeries","_legacy5","_pkgModules","_removedLocalObjects","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","removeComponents","workspace","ids","force","remote","track","deleteFiles","logger","debugAndAddBreadCrumb","toString","bitIdsLatest","ComponentIdList","fromArray","map","id","changeVersion","LATEST_BIT_VERSION","localIds","remoteIds","partition","isLocal","BitError","join","remoteResult","isEmpty","removeRemote","localResult","removeLocal","RemovedLocalObjects","bitIds","groupedBitsByScope","groupArray","remotes","scope","getRemoteScopes","Remotes","getGlobalRemotes","shouldGoToCentralHub","http","Http","connect","CENTRAL_BIT_HUB_URL","CENTRAL_BIT_HUB_NAME","deleteViaCentralHub","idsAreLanes","context","removeP","key","resolvedRemote","resolve","idsStr","toStringWithoutVersion","deleteMany","Promise","all","consumer","modifiedComponents","nonModifiedComponents","newIds","pMapSeries","componentStatus","getComponentStatusById","newlyCreated","modified","err","ConsumerComponent","isComponentInvalidByErrorType","list","listWithInvalid","components","c","hasWithoutVersion","aspectIds","state","aspects","used","find","newId","includes","idsToRemove","componentsList","ComponentsList","newComponents","listNewComponents","idsToRemoveFromScope","idsToCleanFromWorkspace","workspaceComponents","getMany","undefined","componentsToRemove","workspaceComponent","_consumer","removedComponentIds","missingComponents","dependentBits","removedFromLane","removeMany","deleteComponentsFiles","removedComponents","packageComponents","withoutWorkspaceRoot","packageJson","removeComponentsFromDependencies","removeComponentsFromNodeModules","cleanFromBitMap","cleanFromConfig","removeFromStagedConfig","uniqFromArray","bitMap","getComponentIfExist","ignoreVersion","rootDir","WORKSPACE_ROOT_DIR","debug","linkedComponents","pathsToRemoveWithNulls","getNodeModulesPathOfComponent","pathsToRemove","compact","componentPath","fs","remove","toAbsolutePath"],"sources":["remove-components.ts"],"sourcesContent":["import fs from 'fs-extra';\nimport groupArray from 'group-array';\nimport partition from 'lodash.partition';\nimport type { Workspace } from '@teambit/workspace';\nimport { ComponentIdList } from '@teambit/component-id';\nimport { compact, isEmpty } from 'lodash';\nimport { CENTRAL_BIT_HUB_NAME, CENTRAL_BIT_HUB_URL, LATEST_BIT_VERSION } from '@teambit/legacy.constants';\nimport { BitError } from '@teambit/bit-error';\nimport { logger } from '@teambit/legacy.logger';\nimport { Http } from '@teambit/scope.network';\nimport { Remotes } from '@teambit/scope.remotes';\nimport { deleteComponentsFiles } from './delete-component-files';\nimport { WORKSPACE_ROOT_DIR } from '@teambit/legacy.bit-map';\nimport { ComponentsList } from '@teambit/legacy.component-list';\nimport type { RemovedObjects } from '@teambit/legacy.scope';\nimport pMapSeries from 'p-map-series';\nimport type { Consumer } from '@teambit/legacy.consumer';\nimport { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport { getNodeModulesPathOfComponent } from '@teambit/pkg.modules.component-package-name';\nimport { RemovedLocalObjects } from './removed-local-objects';\n\nexport type RemoveComponentsResult = { localResult: RemovedLocalObjects; remoteResult: RemovedObjects[] };\n\n/**\n * Remove components local and remote\n * splits array of ids into local and remote and removes according to flags\n * @param {string[]} ids - list of remote component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n * @param {boolean} remote - delete component from a remote scope\n * @param {boolean} track - keep tracking local staged components in bitmap.\n * @param {boolean} deleteFiles - delete local added files from fs.\n */\nexport async function removeComponents({\n workspace,\n ids,\n force,\n remote,\n track,\n deleteFiles,\n}: {\n workspace?: Workspace; // when remote is false, it's always set\n ids: ComponentIdList;\n force: boolean;\n remote: boolean;\n track: boolean;\n deleteFiles: boolean;\n}): Promise<RemoveComponentsResult> {\n logger.debugAndAddBreadCrumb('removeComponents', `{ids}. force: ${force.toString()}`, { ids: ids.toString() });\n // added this to remove support for remove only one version from a component\n const bitIdsLatest = ComponentIdList.fromArray(\n ids.map((id) => {\n return id.changeVersion(LATEST_BIT_VERSION);\n })\n );\n const [localIds, remoteIds] = partition(bitIdsLatest, (id) => id.isLocal());\n if (remote && localIds.length) {\n throw new BitError(\n `unable to remove the remote components: ${localIds.join(',')} as they don't contain a scope-name`\n );\n }\n const remoteResult = remote && !isEmpty(remoteIds) ? await removeRemote(workspace, remoteIds, force) : [];\n const localResult = !remote\n ? await removeLocal(workspace as Workspace, bitIdsLatest, force, track, deleteFiles)\n : new RemovedLocalObjects();\n\n return { localResult, remoteResult };\n}\n\n/**\n * Remove remote component from the remote\n * this method groups remote components by remote name and deletes remote components together\n * @param {ComponentIdList} bitIds - list of remote component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n */\nasync function removeRemote(\n workspace: Workspace | undefined,\n bitIds: ComponentIdList,\n force: boolean\n): Promise<RemovedObjects[]> {\n const groupedBitsByScope = groupArray(bitIds, 'scope');\n const remotes = workspace ? await workspace.scope.getRemoteScopes() : await Remotes.getGlobalRemotes();\n const shouldGoToCentralHub = remotes.shouldGoToCentralHub(Object.keys(groupedBitsByScope));\n if (shouldGoToCentralHub) {\n const http = await Http.connect(CENTRAL_BIT_HUB_URL, CENTRAL_BIT_HUB_NAME);\n return http.deleteViaCentralHub(\n bitIds.map((id) => id.toString()),\n { force, idsAreLanes: false }\n );\n }\n const context = {};\n const removeP = Object.keys(groupedBitsByScope).map(async (key) => {\n const resolvedRemote = await remotes.resolve(key);\n const idsStr = groupedBitsByScope[key].map((id) => id.toStringWithoutVersion());\n return resolvedRemote.deleteMany(idsStr, force, context);\n });\n\n return Promise.all(removeP);\n}\n\n/**\n * removeLocal - remove local (imported, new staged components) from modules and bitmap according to flags\n * @param {ComponentIdList} bitIds - list of component ids to delete\n * @param {boolean} force - delete component that are used by other components.\n * @param {boolean} deleteFiles - delete component that are used by other components.\n */\nasync function removeLocal(\n workspace: Workspace,\n bitIds: ComponentIdList,\n force: boolean,\n track: boolean,\n deleteFiles: boolean\n): Promise<RemovedLocalObjects> {\n const consumer = workspace.consumer;\n // local remove in case user wants to delete tagged components\n const modifiedComponents = new ComponentIdList();\n const nonModifiedComponents = new ComponentIdList();\n if (!bitIds.length) return new RemovedLocalObjects();\n if (!force) {\n const newIds: string[] = [];\n await pMapSeries(bitIds, async (id) => {\n try {\n const componentStatus = await workspace.getComponentStatusById(id);\n if (componentStatus.newlyCreated) newIds.push(id.toStringWithoutVersion());\n if (componentStatus.modified) modifiedComponents.push(id);\n else nonModifiedComponents.push(id);\n } catch (err: any) {\n // if a component has an error, such as, missing main file, we do want to allow removing that component\n if (ConsumerComponent.isComponentInvalidByErrorType(err)) {\n nonModifiedComponents.push(id);\n } else {\n throw err;\n }\n }\n });\n if (newIds.length) {\n const list = await workspace.listWithInvalid();\n list.components.forEach((c) => {\n if (bitIds.hasWithoutVersion(c.id)) return; // it gets deleted anyway\n const aspectIds = c.state.aspects.ids;\n const used = newIds.find((newId) => aspectIds.includes(newId));\n if (used)\n throw new BitError(`Unable to remove ${c.id.toStringWithoutVersion()}.\nThis component is 1) an aspect 2) is used by other components, such as \"${c.id.toStringWithoutVersion()}\" 3) it's a new component so it can't be installed as a package.\nRemoving this component from the workspace will disrupt the functionality of other components that depend on it, and resolving these issues may not be straightforward.\nIf you understand the risks and wish to proceed with the removal, please use the --force flag.\n`);\n });\n }\n }\n const idsToRemove = force ? bitIds : nonModifiedComponents;\n const componentsList = new ComponentsList(workspace);\n const newComponents = (await componentsList.listNewComponents(false)) as ComponentIdList;\n const idsToRemoveFromScope = ComponentIdList.fromArray(\n idsToRemove.filter((id) => !newComponents.hasWithoutVersion(id))\n );\n const idsToCleanFromWorkspace = ComponentIdList.fromArray(\n idsToRemove.filter((id) => newComponents.hasWithoutVersion(id))\n );\n const workspaceComponents = await workspace.getMany(idsToRemove, undefined, false);\n const componentsToRemove = workspaceComponents.map((workspaceComponent) => workspaceComponent.state._consumer);\n const { removedComponentIds, missingComponents, dependentBits, removedFromLane } = await consumer.scope.removeMany(\n idsToRemoveFromScope,\n force,\n consumer\n );\n // otherwise, components should still be in .bitmap file\n idsToCleanFromWorkspace.push(...removedComponentIds);\n if (idsToCleanFromWorkspace.length) {\n if (deleteFiles) await deleteComponentsFiles(consumer, idsToCleanFromWorkspace);\n if (!track) {\n const removedComponents = componentsToRemove.filter((c) => idsToCleanFromWorkspace.hasWithoutVersion(c.id));\n // the root is untracked only. it was never a package, see withoutWorkspaceRoot.\n const packageComponents = withoutWorkspaceRoot(consumer, removedComponents);\n await consumer.packageJson.removeComponentsFromDependencies(packageComponents);\n await removeComponentsFromNodeModules(consumer, packageComponents);\n await consumer.cleanFromBitMap(idsToCleanFromWorkspace);\n await workspace.cleanFromConfig(idsToCleanFromWorkspace);\n await workspace.removeFromStagedConfig(idsToCleanFromWorkspace);\n }\n }\n return new RemovedLocalObjects(\n ComponentIdList.uniqFromArray([...idsToCleanFromWorkspace, ...removedComponentIds]),\n missingComponents,\n modifiedComponents,\n dependentBits,\n removedFromLane\n );\n}\n\n/**\n * the workspace-root component is never installed nor linked - it is the workspace, not a package - so\n * there is nothing of it to remove from the manifests or from node_modules, and the package name its\n * id derives may belong to a dependency of the same name.\n */\nfunction withoutWorkspaceRoot(consumer: Consumer, components: ConsumerComponent[]): ConsumerComponent[] {\n return components.filter(\n (c) => consumer.bitMap.getComponentIfExist(c.id, { ignoreVersion: true })?.rootDir !== WORKSPACE_ROOT_DIR\n );\n}\n\nexport async function removeComponentsFromNodeModules(consumer: Consumer, components: ConsumerComponent[]) {\n logger.debug(`removeComponentsFromNodeModules: ${components.map((c) => c.id.toString()).join(', ')}`);\n const linkedComponents = withoutWorkspaceRoot(consumer, components);\n const pathsToRemoveWithNulls = linkedComponents.map((c) => {\n return getNodeModulesPathOfComponent({ ...c, id: c.id });\n });\n const pathsToRemove = compact(pathsToRemoveWithNulls);\n logger.debug(`deleting the following paths: ${pathsToRemove.join('\\n')}`);\n return Promise.all(pathsToRemove.map((componentPath) => fs.remove(consumer.toAbsolutePath(componentPath))));\n}\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/remove",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1175",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/remove",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "remove",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1175"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"chalk": "4.1.2",
|
|
@@ -18,30 +18,31 @@
|
|
|
18
18
|
"p-map-series": "2.1.0",
|
|
19
19
|
"semver": "7.7.1",
|
|
20
20
|
"@teambit/bit-error": "0.0.404",
|
|
21
|
-
"@teambit/cli": "0.0.1393",
|
|
22
|
-
"@teambit/harmony.modules.feature-toggle": "0.0.57",
|
|
23
|
-
"@teambit/legacy.constants": "0.0.44",
|
|
24
|
-
"@teambit/legacy.scope": "0.0.164",
|
|
25
21
|
"@teambit/component-id": "1.2.4",
|
|
26
|
-
"@teambit/component.sources": "0.0.216",
|
|
27
|
-
"@teambit/legacy.consumer": "0.0.164",
|
|
28
|
-
"@teambit/legacy.logger": "0.0.61",
|
|
29
|
-
"@teambit/legacy.component-list": "0.0.218",
|
|
30
|
-
"@teambit/legacy.consumer-component": "0.0.165",
|
|
31
|
-
"@teambit/pkg.modules.component-package-name": "0.0.171",
|
|
32
|
-
"@teambit/scope.network": "0.0.164",
|
|
33
|
-
"@teambit/scope.remotes": "0.0.164",
|
|
34
22
|
"@teambit/harmony": "0.4.12",
|
|
35
23
|
"@teambit/component-issues": "0.0.188",
|
|
36
24
|
"@teambit/legacy.utils": "0.0.51",
|
|
37
|
-
"@teambit/
|
|
38
|
-
"@teambit/
|
|
39
|
-
"@teambit/
|
|
40
|
-
"@teambit/
|
|
41
|
-
"@teambit/
|
|
42
|
-
"@teambit/
|
|
43
|
-
"@teambit/
|
|
44
|
-
"@teambit/
|
|
25
|
+
"@teambit/cli": "0.0.1394",
|
|
26
|
+
"@teambit/harmony.modules.feature-toggle": "0.0.58",
|
|
27
|
+
"@teambit/legacy.constants": "0.0.45",
|
|
28
|
+
"@teambit/legacy.scope": "0.0.165",
|
|
29
|
+
"@teambit/workspace": "1.0.1175",
|
|
30
|
+
"@teambit/component.sources": "0.0.217",
|
|
31
|
+
"@teambit/legacy.bit-map": "0.0.222",
|
|
32
|
+
"@teambit/legacy.consumer": "0.0.165",
|
|
33
|
+
"@teambit/legacy.logger": "0.0.62",
|
|
34
|
+
"@teambit/legacy.component-list": "0.0.219",
|
|
35
|
+
"@teambit/legacy.consumer-component": "0.0.166",
|
|
36
|
+
"@teambit/pkg.modules.component-package-name": "0.0.172",
|
|
37
|
+
"@teambit/scope.network": "0.0.165",
|
|
38
|
+
"@teambit/scope.remotes": "0.0.165",
|
|
39
|
+
"@teambit/component": "1.0.1175",
|
|
40
|
+
"@teambit/dependency-resolver": "1.0.1175",
|
|
41
|
+
"@teambit/importer": "1.0.1175",
|
|
42
|
+
"@teambit/issues": "1.0.1175",
|
|
43
|
+
"@teambit/lister": "1.0.1175",
|
|
44
|
+
"@teambit/logger": "0.0.1487",
|
|
45
|
+
"@teambit/scope": "1.0.1175"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@types/fs-extra": "9.0.7",
|
|
File without changes
|