@teambit/lanes 0.0.731 → 0.0.732

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.
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.731/dist/lanes.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.731/dist/lanes.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.732/dist/lanes.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.732/dist/lanes.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -76,7 +76,7 @@ ${_constants().COMPONENT_PATTERN_HELP}`], ['j', 'json', 'return the output as JS
76
76
  const title = 'the switch has been canceled for the following component(s)';
77
77
  const body = failedComponents.map(failedComponent => {
78
78
  const color = failedComponent.unchangedLegitimately ? 'white' : 'red';
79
- return `${_chalk().default.bold(failedComponent.id.toString())} - ${_chalk().default[color](failedComponent.failureMessage)}`;
79
+ return `${_chalk().default.bold(failedComponent.id.toString())} - ${_chalk().default[color](failedComponent.unchangedMessage)}`;
80
80
  }).join('\n');
81
81
  return `${title}\n${body}\n\n`;
82
82
  };
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_merging","_constants","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","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","alias","merge","getAll","skipDependencyInstallation","pattern","json","components","failedComponents","installationError","compilationError","switchLanes","JSON","stringify","getFailureOutput","length","title","body","map","failedComponent","color","unchangedLegitimately","chalk","bold","id","toString","failureMessage","join","getSuccessfulOutput","laneSwitched","green","applyVersionReport","failedOutput","successOutput","installationErrorOutput","compilationErrorOutput","exports"],"sources":["switch.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { applyVersionReport, installationErrorOutput, compilationErrorOutput } from '@teambit/merging';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { LanesMain } from './lanes.main.runtime';\n\nexport class SwitchCmd implements Command {\n name = 'switch <lane>';\n description = `switch to the specified lane`;\n extendedDescription = ``;\n private = true;\n alias = '';\n arguments = [\n {\n name: 'lane',\n description: 'lane-name or lane-id (if lane is not local) to switch to',\n },\n ];\n options = [\n [\n 'n',\n 'alias <string>',\n \"relevant when the specified lane is a remote lane. create a local alias for the lane (doesnt affect the lane's name on the remote\",\n ],\n [\n 'm',\n 'merge [strategy]',\n 'merge local changes with the checked out version. strategy should be \"theirs\", \"ours\" or \"manual\"',\n ],\n ['a', 'get-all', 'checkout all components in a lane, including those not currently in the workspace'],\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n `switch only the lane components matching the specified component-pattern. only works when the workspace is empty\\n\n${COMPONENT_PATTERN_HELP}`,\n ],\n ['j', 'json', 'return the output as JSON'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [lane]: [string],\n {\n alias,\n merge,\n getAll = false,\n skipDependencyInstallation = false,\n pattern,\n json = false,\n }: {\n alias?: string;\n merge?: MergeStrategy;\n getAll?: boolean;\n skipDependencyInstallation?: boolean;\n override?: boolean;\n pattern?: string;\n json?: boolean;\n }\n ) {\n const { components, failedComponents, installationError, compilationError } = await this.lanes.switchLanes(lane, {\n alias,\n merge,\n getAll,\n pattern,\n skipDependencyInstallation,\n });\n if (json) {\n return JSON.stringify({ components, failedComponents }, null, 4);\n }\n const getFailureOutput = () => {\n if (!failedComponents || !failedComponents.length) return '';\n const title = 'the switch has been canceled for the following component(s)';\n const body = failedComponents\n .map((failedComponent) => {\n const color = failedComponent.unchangedLegitimately ? 'white' : 'red';\n return `${chalk.bold(failedComponent.id.toString())} - ${chalk[color](failedComponent.failureMessage)}`;\n })\n .join('\\n');\n return `${title}\\n${body}\\n\\n`;\n };\n const getSuccessfulOutput = () => {\n const laneSwitched = chalk.green(`\\nsuccessfully set \"${chalk.bold(lane)}\" as the active lane`);\n if (!components || !components.length) return `No components have been changed.${laneSwitched}`;\n const title = `successfully switched ${components.length} components to the head of lane ${lane}\\n`;\n return chalk.bold(title) + applyVersionReport(components, true, false) + laneSwitched;\n };\n const failedOutput = getFailureOutput();\n const successOutput = getSuccessfulOutput();\n return (\n failedOutput +\n successOutput +\n installationErrorOutput(installationError) +\n compilationErrorOutput(compilationError)\n );\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_merging","_constants","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","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","alias","merge","getAll","skipDependencyInstallation","pattern","json","components","failedComponents","installationError","compilationError","switchLanes","JSON","stringify","getFailureOutput","length","title","body","map","failedComponent","color","unchangedLegitimately","chalk","bold","id","toString","unchangedMessage","join","getSuccessfulOutput","laneSwitched","green","applyVersionReport","failedOutput","successOutput","installationErrorOutput","compilationErrorOutput","exports"],"sources":["switch.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { applyVersionReport, installationErrorOutput, compilationErrorOutput } from '@teambit/merging';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\nimport { LanesMain } from './lanes.main.runtime';\n\nexport class SwitchCmd implements Command {\n name = 'switch <lane>';\n description = `switch to the specified lane`;\n extendedDescription = ``;\n private = true;\n alias = '';\n arguments = [\n {\n name: 'lane',\n description: 'lane-name or lane-id (if lane is not local) to switch to',\n },\n ];\n options = [\n [\n 'n',\n 'alias <string>',\n \"relevant when the specified lane is a remote lane. create a local alias for the lane (doesnt affect the lane's name on the remote\",\n ],\n [\n 'm',\n 'merge [strategy]',\n 'merge local changes with the checked out version. strategy should be \"theirs\", \"ours\" or \"manual\"',\n ],\n ['a', 'get-all', 'checkout all components in a lane, including those not currently in the workspace'],\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n `switch only the lane components matching the specified component-pattern. only works when the workspace is empty\\n\n${COMPONENT_PATTERN_HELP}`,\n ],\n ['j', 'json', 'return the output as JSON'],\n ] as CommandOptions;\n loader = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [lane]: [string],\n {\n alias,\n merge,\n getAll = false,\n skipDependencyInstallation = false,\n pattern,\n json = false,\n }: {\n alias?: string;\n merge?: MergeStrategy;\n getAll?: boolean;\n skipDependencyInstallation?: boolean;\n override?: boolean;\n pattern?: string;\n json?: boolean;\n }\n ) {\n const { components, failedComponents, installationError, compilationError } = await this.lanes.switchLanes(lane, {\n alias,\n merge,\n getAll,\n pattern,\n skipDependencyInstallation,\n });\n if (json) {\n return JSON.stringify({ components, failedComponents }, null, 4);\n }\n const getFailureOutput = () => {\n if (!failedComponents || !failedComponents.length) return '';\n const title = 'the switch has been canceled for the following component(s)';\n const body = failedComponents\n .map((failedComponent) => {\n const color = failedComponent.unchangedLegitimately ? 'white' : 'red';\n return `${chalk.bold(failedComponent.id.toString())} - ${chalk[color](failedComponent.unchangedMessage)}`;\n })\n .join('\\n');\n return `${title}\\n${body}\\n\\n`;\n };\n const getSuccessfulOutput = () => {\n const laneSwitched = chalk.green(`\\nsuccessfully set \"${chalk.bold(lane)}\" as the active lane`);\n if (!components || !components.length) return `No components have been changed.${laneSwitched}`;\n const title = `successfully switched ${components.length} components to the head of lane ${lane}\\n`;\n return chalk.bold(title) + applyVersionReport(components, true, false) + laneSwitched;\n };\n const failedOutput = getFailureOutput();\n const successOutput = getSuccessfulOutput();\n return (\n failedOutput +\n successOutput +\n installationErrorOutput(installationError) +\n compilationErrorOutput(compilationError)\n );\n }\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/lanes",
3
- "version": "0.0.731",
3
+ "version": "0.0.732",
4
4
  "homepage": "https://bit.cloud/teambit/lanes/lanes",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.lanes",
8
8
  "name": "lanes",
9
- "version": "0.0.731"
9
+ "version": "0.0.732"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -21,37 +21,37 @@
21
21
  "@teambit/scope.ui.scope-icon": "0.0.91",
22
22
  "@teambit/bit-error": "0.0.402",
23
23
  "@teambit/component-version": "1.0.0",
24
- "@teambit/lane-id": "0.0.288",
25
- "@teambit/scope": "0.0.1159",
26
- "@teambit/snapping": "0.0.474",
27
- "@teambit/workspace": "0.0.1159",
28
- "@teambit/lanes.ui.models.lanes-model": "0.0.188",
29
- "@teambit/cli": "0.0.773",
30
- "@teambit/express": "0.0.872",
31
- "@teambit/logger": "0.0.866",
32
- "@teambit/graphql": "0.0.1159",
33
- "@teambit/checkout": "0.0.328",
34
- "@teambit/component-compare": "0.0.407",
35
- "@teambit/component-writer": "0.0.195",
36
- "@teambit/component": "0.0.1159",
37
- "@teambit/export": "0.0.1159",
38
- "@teambit/importer": "0.0.588",
39
- "@teambit/lanes.entities.lane-diff": "0.0.133",
40
- "@teambit/lanes.modules.diff": "0.0.406",
41
- "@teambit/merging": "0.0.474",
42
- "@teambit/remove": "0.0.336",
43
- "@teambit/lanes.hooks.use-lanes": "0.0.235",
44
- "@teambit/lanes.hooks.use-viewed-lane-from-url": "0.0.197",
45
- "@teambit/lanes.ui.compare.lane-compare-page": "0.0.133",
46
- "@teambit/lanes.ui.compare.lane-compare": "0.0.151",
47
- "@teambit/lanes.ui.lane-overview": "0.0.191",
24
+ "@teambit/lane-id": "0.0.289",
25
+ "@teambit/scope": "0.0.1160",
26
+ "@teambit/snapping": "0.0.475",
27
+ "@teambit/workspace": "0.0.1160",
28
+ "@teambit/lanes.ui.models.lanes-model": "0.0.189",
29
+ "@teambit/cli": "0.0.774",
30
+ "@teambit/express": "0.0.873",
31
+ "@teambit/logger": "0.0.867",
32
+ "@teambit/graphql": "0.0.1160",
33
+ "@teambit/checkout": "0.0.329",
34
+ "@teambit/component-compare": "0.0.408",
35
+ "@teambit/component-writer": "0.0.196",
36
+ "@teambit/component": "0.0.1160",
37
+ "@teambit/export": "0.0.1160",
38
+ "@teambit/importer": "0.0.589",
39
+ "@teambit/lanes.entities.lane-diff": "0.0.134",
40
+ "@teambit/lanes.modules.diff": "0.0.407",
41
+ "@teambit/merging": "0.0.475",
42
+ "@teambit/remove": "0.0.337",
43
+ "@teambit/lanes.hooks.use-lanes": "0.0.236",
44
+ "@teambit/lanes.hooks.use-viewed-lane-from-url": "0.0.198",
45
+ "@teambit/lanes.ui.compare.lane-compare-page": "0.0.134",
46
+ "@teambit/lanes.ui.compare.lane-compare": "0.0.152",
47
+ "@teambit/lanes.ui.lane-overview": "0.0.192",
48
48
  "@teambit/lanes.ui.menus.lanes-overview-menu": "0.0.6",
49
- "@teambit/lanes.ui.menus.use-lanes-menu": "0.0.189",
50
- "@teambit/lanes.ui.navigation.lane-switcher": "0.0.194",
49
+ "@teambit/lanes.ui.menus.use-lanes-menu": "0.0.190",
50
+ "@teambit/lanes.ui.navigation.lane-switcher": "0.0.195",
51
51
  "@teambit/ui-foundation.ui.menu": "0.0.498",
52
52
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.502",
53
53
  "@teambit/ui-foundation.ui.react-router.use-query": "0.0.497",
54
- "@teambit/ui": "0.0.1159"
54
+ "@teambit/ui": "0.0.1160"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/lodash": "4.14.165",
@@ -63,13 +63,13 @@
63
63
  "@types/react-dom": "^17.0.5",
64
64
  "@types/jest": "^26.0.0",
65
65
  "@types/testing-library__jest-dom": "5.9.5",
66
- "@teambit/component.testing.mock-components": "0.0.135",
67
- "@teambit/harmony.testing.load-aspect": "0.0.134",
66
+ "@teambit/component.testing.mock-components": "0.0.136",
67
+ "@teambit/harmony.testing.load-aspect": "0.0.135",
68
68
  "@teambit/workspace.testing.mock-workspace": "0.0.14"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "react-router-dom": "^6.0.0",
72
- "@teambit/legacy": "1.0.558",
72
+ "@teambit/legacy": "1.0.559",
73
73
  "react": "^16.8.0 || ^17.0.0",
74
74
  "react-dom": "^16.8.0 || ^17.0.0"
75
75
  },