@teambit/remove 1.0.99 → 1.0.100

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.
@@ -60,7 +60,7 @@ this command marks the components as deleted, and after snap/tag and export they
60
60
  _defineProperty(this, "helpUrl", 'reference/components/removing-components');
61
61
  _defineProperty(this, "skipWorkspace", true);
62
62
  _defineProperty(this, "alias", '');
63
- _defineProperty(this, "options", [['', 'lane', 'when on a lane, delete the component from this lane only. avoid merging it to main or other lanes'], ['', 'update-main', 'EXPERIMENTAL. delete component/s on the main lane after merging this lane into main'], ['f', 'force', 'removes the component from the scope, even if used as a dependency. WARNING: components that depend on this component will corrupt'], ['s', 'silent', 'skip confirmation'], ['', 'hard', 'NOT-RECOMMENDED. delete a component completely from a remote scope. careful! this is a permanent change that could corrupt dependents.']]);
63
+ _defineProperty(this, "options", [['', 'lane', 'when on a lane, delete the component from this lane only. avoid merging it to main or other lanes'], ['', 'update-main', 'EXPERIMENTAL. delete component/s on the main lane after merging this lane into main'], ['s', 'silent', 'skip confirmation'], ['', 'hard', 'NOT-RECOMMENDED. delete a component completely from a remote scope. careful! this is a permanent change that could corrupt dependents.'], ['f', 'force', 'relevant for --hard. allow the deletion even if used as a dependency. WARNING: components that depend on this component will corrupt']]);
64
64
  _defineProperty(this, "loader", true);
65
65
  _defineProperty(this, "migration", true);
66
66
  _defineProperty(this, "remoteOp", true);
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yesno","_bitError","_constants","_removeTemplate","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","DeleteCmd","constructor","remove","workspace","name","description","COMPONENT_PATTERN_HELP","report","componentsPattern","force","lane","updateMain","hard","silent","_this$workspace","_this$workspace2","isOnLane","BitError","isOnMain","removePrompt","localResult","remoteResult","remote","localMessage","removeTemplate","paintArray","removedCompIds","deleteComps","chalk","green","join","bold","removedObjectsArray","map","item","logger","clearStatusLine","remoteOrLocalOutput","ok","yesno","question","exports"],"sources":["delete-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport yesno from 'yesno';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { Workspace } from '@teambit/workspace';\nimport { BitError } from '@teambit/bit-error';\nimport RemovedObjects from '@teambit/legacy/dist/scope/removed-components';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { RemoveMain } from './remove.main.runtime';\nimport { removeTemplate } from './remove-template';\n\nexport class DeleteCmd implements Command {\n name = 'delete <component-pattern>';\n description = 'mark components as deleted on the remote';\n extendedDescription = `to remove components from your local workspace only, use \"bit remove\" command.\nthis command marks the components as deleted, and after snap/tag and export they will be marked as deleted from the remote scope as well.\n`;\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n group = 'collaborate';\n helpUrl = 'reference/components/removing-components';\n skipWorkspace = true;\n alias = '';\n options = [\n ['', 'lane', 'when on a lane, delete the component from this lane only. avoid merging it to main or other lanes'],\n ['', 'update-main', 'EXPERIMENTAL. delete component/s on the main lane after merging this lane into main'],\n [\n 'f',\n 'force',\n 'removes the component from the scope, even if used as a dependency. WARNING: components that depend on this component will corrupt',\n ],\n ['s', 'silent', 'skip confirmation'],\n [\n '',\n 'hard',\n 'NOT-RECOMMENDED. delete a component completely from a remote scope. careful! this is a permanent change that could corrupt dependents.',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n remoteOp = true;\n\n constructor(private remove: RemoveMain, private workspace?: Workspace) {}\n\n async report(\n [componentsPattern]: [string],\n {\n force = false,\n lane = false,\n updateMain = false,\n hard = false,\n silent = false,\n }: {\n force?: boolean;\n lane?: boolean;\n updateMain?: boolean;\n hard?: boolean;\n silent?: boolean;\n }\n ) {\n if (this.workspace?.isOnLane() && !hard && !lane && !updateMain) {\n throw new BitError(`error: to delete components when on a lane, use --lane flag`);\n }\n if (this.workspace?.isOnMain() && updateMain) {\n throw new BitError(`--update-main is relevant only when on a lane`);\n }\n\n if (!silent) {\n await this.removePrompt(hard);\n }\n\n if (hard) {\n const { localResult, remoteResult = [] } = await this.remove.remove({ componentsPattern, remote: true, force });\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n let localMessage = removeTemplate(localResult, false);\n if (localMessage !== '') localMessage += '\\n';\n return `${localMessage}${this.paintArray(remoteResult)}`;\n }\n\n const removedCompIds = await this.remove.deleteComps(componentsPattern, { updateMain });\n return `${chalk.green('successfully deleted the following components:')}\n${removedCompIds.join('\\n')}\n\n${chalk.bold('to update the remote, please tag/snap and then export. to revert, please use \"bit recover\"')}`;\n }\n\n private paintArray(removedObjectsArray: RemovedObjects[]) {\n return removedObjectsArray.map((item) => removeTemplate(item, true));\n }\n\n private async removePrompt(hard?: boolean) {\n this.remove.logger.clearStatusLine();\n const remoteOrLocalOutput = hard\n ? `WARNING: the component(s) will be permanently deleted from the remote with no option to recover. prefer omitting --hard to only mark the component as deleted`\n : `this command will mark the component as deleted, and it won’t be shown on the remote scope after tag/snap and export.\nif your intent, is to remove the component only from your local workspace, refer to bit remove.`;\n\n const ok = await yesno({\n question: `${remoteOrLocalOutput}\n${chalk.bold('Would you like to proceed? [yes(y)/no(n)]')}`,\n });\n if (!ok) {\n throw new BitError('the operation has been canceled');\n }\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yesno","_bitError","_constants","_removeTemplate","obj","__esModule","default","_defineProperty","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","DeleteCmd","constructor","remove","workspace","name","description","COMPONENT_PATTERN_HELP","report","componentsPattern","force","lane","updateMain","hard","silent","_this$workspace","_this$workspace2","isOnLane","BitError","isOnMain","removePrompt","localResult","remoteResult","remote","localMessage","removeTemplate","paintArray","removedCompIds","deleteComps","chalk","green","join","bold","removedObjectsArray","map","item","logger","clearStatusLine","remoteOrLocalOutput","ok","yesno","question","exports"],"sources":["delete-cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport yesno from 'yesno';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { Workspace } from '@teambit/workspace';\nimport { BitError } from '@teambit/bit-error';\nimport RemovedObjects from '@teambit/legacy/dist/scope/removed-components';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { RemoveMain } from './remove.main.runtime';\nimport { removeTemplate } from './remove-template';\n\nexport class DeleteCmd implements Command {\n name = 'delete <component-pattern>';\n description = 'mark components as deleted on the remote';\n extendedDescription = `to remove components from your local workspace only, use \"bit remove\" command.\nthis command marks the components as deleted, and after snap/tag and export they will be marked as deleted from the remote scope as well.\n`;\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n group = 'collaborate';\n helpUrl = 'reference/components/removing-components';\n skipWorkspace = true;\n alias = '';\n options = [\n ['', 'lane', 'when on a lane, delete the component from this lane only. avoid merging it to main or other lanes'],\n ['', 'update-main', 'EXPERIMENTAL. delete component/s on the main lane after merging this lane into main'],\n ['s', 'silent', 'skip confirmation'],\n [\n '',\n 'hard',\n 'NOT-RECOMMENDED. delete a component completely from a remote scope. careful! this is a permanent change that could corrupt dependents.',\n ],\n [\n 'f',\n 'force',\n 'relevant for --hard. allow the deletion even if used as a dependency. WARNING: components that depend on this component will corrupt',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n remoteOp = true;\n\n constructor(private remove: RemoveMain, private workspace?: Workspace) {}\n\n async report(\n [componentsPattern]: [string],\n {\n force = false,\n lane = false,\n updateMain = false,\n hard = false,\n silent = false,\n }: {\n force?: boolean;\n lane?: boolean;\n updateMain?: boolean;\n hard?: boolean;\n silent?: boolean;\n }\n ) {\n if (this.workspace?.isOnLane() && !hard && !lane && !updateMain) {\n throw new BitError(`error: to delete components when on a lane, use --lane flag`);\n }\n if (this.workspace?.isOnMain() && updateMain) {\n throw new BitError(`--update-main is relevant only when on a lane`);\n }\n\n if (!silent) {\n await this.removePrompt(hard);\n }\n\n if (hard) {\n const { localResult, remoteResult = [] } = await this.remove.remove({ componentsPattern, remote: true, force });\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n let localMessage = removeTemplate(localResult, false);\n if (localMessage !== '') localMessage += '\\n';\n return `${localMessage}${this.paintArray(remoteResult)}`;\n }\n\n const removedCompIds = await this.remove.deleteComps(componentsPattern, { updateMain });\n return `${chalk.green('successfully deleted the following components:')}\n${removedCompIds.join('\\n')}\n\n${chalk.bold('to update the remote, please tag/snap and then export. to revert, please use \"bit recover\"')}`;\n }\n\n private paintArray(removedObjectsArray: RemovedObjects[]) {\n return removedObjectsArray.map((item) => removeTemplate(item, true));\n }\n\n private async removePrompt(hard?: boolean) {\n this.remove.logger.clearStatusLine();\n const remoteOrLocalOutput = hard\n ? `WARNING: the component(s) will be permanently deleted from the remote with no option to recover. prefer omitting --hard to only mark the component as deleted`\n : `this command will mark the component as deleted, and it won’t be shown on the remote scope after tag/snap and export.\nif your intent, is to remove the component only from your local workspace, refer to bit remove.`;\n\n const ok = await yesno({\n question: `${remoteOrLocalOutput}\n${chalk.bold('Would you like to proceed? [yes(y)/no(n)]')}`,\n });\n if (!ok) {\n throw new BitError('the operation has been canceled');\n }\n }\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/remove",
3
- "version": "1.0.99",
3
+ "version": "1.0.100",
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.99"
9
+ "version": "1.0.100"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -21,14 +21,14 @@
21
21
  "@teambit/bit-error": "0.0.404",
22
22
  "@teambit/component-id": "1.2.0",
23
23
  "@teambit/harmony": "0.4.6",
24
- "@teambit/cli": "0.0.833",
25
- "@teambit/workspace": "1.0.99",
26
- "@teambit/component": "1.0.99",
27
- "@teambit/component-issues": "0.0.131",
28
- "@teambit/dependency-resolver": "1.0.99",
29
- "@teambit/importer": "1.0.99",
30
- "@teambit/issues": "1.0.99",
31
- "@teambit/logger": "0.0.926"
24
+ "@teambit/cli": "0.0.834",
25
+ "@teambit/workspace": "1.0.100",
26
+ "@teambit/component": "1.0.100",
27
+ "@teambit/component-issues": "0.0.132",
28
+ "@teambit/dependency-resolver": "1.0.100",
29
+ "@teambit/importer": "1.0.100",
30
+ "@teambit/issues": "1.0.100",
31
+ "@teambit/logger": "0.0.927"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/lodash": "4.14.165",
@@ -40,11 +40,13 @@
40
40
  "@types/testing-library__jest-dom": "5.9.5"
41
41
  },
42
42
  "peerDependencies": {
43
- "@teambit/legacy": "1.0.618",
43
+ "@teambit/legacy": "1.0.619",
44
44
  "react": "^16.8.0 || ^17.0.0",
45
45
  "react-dom": "^16.8.0 || ^17.0.0"
46
46
  },
47
47
  "license": "Apache-2.0",
48
+ "optionalDependencies": {},
49
+ "peerDependenciesMeta": {},
48
50
  "exports": {
49
51
  "node": {
50
52
  "require": "./dist/index.js",