@teambit/lanes 1.0.468 → 1.0.470
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/__bit_junit.xml +11 -11
- package/artifacts/preview/teambit_lanes_lanes-preview.js +1 -1
- package/artifacts/schema.json +204 -975
- package/dist/{preview-1732072955804.js → preview-1732245631025.js} +2 -2
- package/dist/switch.cmd.d.ts +2 -1
- package/dist/switch.cmd.js +13 -7
- package/dist/switch.cmd.js.map +1 -1
- package/package.json +27 -27
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.lanes_lanes@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.lanes_lanes@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.lanes_lanes@1.0.470/dist/lanes.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.lanes_lanes@1.0.470/dist/lanes.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
package/dist/switch.cmd.d.ts
CHANGED
@@ -15,7 +15,7 @@ export declare class SwitchCmd implements Command {
|
|
15
15
|
options: CommandOptions;
|
16
16
|
loader: boolean;
|
17
17
|
constructor(lanes: LanesMain);
|
18
|
-
report([lane]: [string], { head, alias, autoMergeResolve, forceOurs, forceTheirs, getAll, workspaceOnly, skipDependencyInstallation, pattern, json, }: {
|
18
|
+
report([lane]: [string], { head, alias, autoMergeResolve, forceOurs, forceTheirs, getAll, workspaceOnly, skipDependencyInstallation, pattern, verbose, json, }: {
|
19
19
|
head?: boolean;
|
20
20
|
alias?: string;
|
21
21
|
autoMergeResolve?: MergeStrategy;
|
@@ -26,6 +26,7 @@ export declare class SwitchCmd implements Command {
|
|
26
26
|
skipDependencyInstallation?: boolean;
|
27
27
|
override?: boolean;
|
28
28
|
pattern?: string;
|
29
|
+
verbose?: boolean;
|
29
30
|
json?: boolean;
|
30
31
|
}): Promise<string>;
|
31
32
|
}
|
package/dist/switch.cmd.js
CHANGED
@@ -49,7 +49,7 @@ class SwitchCmd {
|
|
49
49
|
description: 'lane-name or lane-id (if lane is not local) to switch to'
|
50
50
|
}]);
|
51
51
|
_defineProperty(this, "options", [['h', 'head', 'switch to the head of the lane/main (fetches the latest changes from the remote)'], ['r', 'auto-merge-resolve <merge-strategy>', 'merge local changes with the checked out version. strategy should be "theirs", "ours" or "manual"'], ['', 'force-ours', 'do not merge, preserve local files as is'], ['', 'force-theirs', 'do not merge, just overwrite with incoming files'], ['a', 'get-all', 'DEPRECATED. this is currently the default behavior'], ['', 'workspace-only', 'checkout only the components in the workspace to the selected lane'], ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'], ['p', 'pattern <component-pattern>', `switch only the lane components matching the specified component-pattern. only works when the workspace is empty\n
|
52
|
-
${_constants().COMPONENT_PATTERN_HELP}`], ['n', 'alias <string>', "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"], ['j', 'json', 'return the output as JSON']]);
|
52
|
+
${_constants().COMPONENT_PATTERN_HELP}`], ['n', 'alias <string>', "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"], ['', 'verbose', 'display detailed information about components that legitimately were not switched'], ['j', 'json', 'return the output as JSON']]);
|
53
53
|
_defineProperty(this, "loader", true);
|
54
54
|
}
|
55
55
|
async report([lane], {
|
@@ -62,6 +62,7 @@ ${_constants().COMPONENT_PATTERN_HELP}`], ['n', 'alias <string>', "relevant when
|
|
62
62
|
workspaceOnly = false,
|
63
63
|
skipDependencyInstallation = false,
|
64
64
|
pattern,
|
65
|
+
verbose,
|
65
66
|
json = false
|
66
67
|
}) {
|
67
68
|
const {
|
@@ -90,12 +91,17 @@ ${_constants().COMPONENT_PATTERN_HELP}`], ['n', 'alias <string>', "relevant when
|
|
90
91
|
}
|
91
92
|
const getFailureOutput = () => {
|
92
93
|
if (!failedComponents || !failedComponents.length) return '';
|
93
|
-
const title = '
|
94
|
-
const body = failedComponents.map(failedComponent => {
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
94
|
+
const title = '\nswitch skipped for the following component(s)';
|
95
|
+
const body = (0, _lodash().compact)(failedComponents.map(failedComponent => {
|
96
|
+
// all failures here are "unchangedLegitimately". otherwise, it would have been thrown as an error
|
97
|
+
if (!verbose) return null;
|
98
|
+
return `${_chalk().default.bold(failedComponent.id.toString())} - ${_chalk().default.white(failedComponent.unchangedMessage)}`;
|
99
|
+
})).join('\n');
|
100
|
+
if (!body) {
|
101
|
+
return `${_chalk().default.bold(`\nswitch skipped legitimately for ${failedComponents.length} component(s)`)}
|
102
|
+
(use --verbose to list them next time)`;
|
103
|
+
}
|
104
|
+
return `${_chalk().default.underline(title)}\n${body}`;
|
99
105
|
};
|
100
106
|
const getSuccessfulOutput = () => {
|
101
107
|
const laneSwitched = _chalk().default.green(`\nsuccessfully set "${_chalk().default.bold(lane)}" as the active lane`);
|
package/dist/switch.cmd.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_merging","_constants","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","head","alias","autoMergeResolve","forceOurs","forceTheirs","getAll","workspaceOnly","skipDependencyInstallation","pattern","json","components","failedComponents","installationError","compilationError","switchLanes","merge","logger","warn","JSON","stringify","getFailureOutput","length","title","body","
|
1
|
+
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","_lodash","_merging","_constants","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","SwitchCmd","constructor","lanes","name","description","COMPONENT_PATTERN_HELP","report","lane","head","alias","autoMergeResolve","forceOurs","forceTheirs","getAll","workspaceOnly","skipDependencyInstallation","pattern","verbose","json","components","failedComponents","installationError","compilationError","switchLanes","merge","logger","warn","JSON","stringify","getFailureOutput","length","title","body","compact","map","failedComponent","chalk","bold","id","toString","white","unchangedMessage","join","underline","getSuccessfulOutput","laneSwitched","green","applyVersionReport","installationErrorOutput","compilationErrorOutput","exports"],"sources":["switch.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport { compact } from 'lodash';\nimport { applyVersionReport, installationErrorOutput, MergeStrategy, compilationErrorOutput } from '@teambit/merging';\nimport { Command, CommandOptions } from '@teambit/cli';\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 ['h', 'head', 'switch to the head of the lane/main (fetches the latest changes from the remote)'],\n [\n 'r',\n 'auto-merge-resolve <merge-strategy>',\n 'merge local changes with the checked out version. strategy should be \"theirs\", \"ours\" or \"manual\"',\n ],\n ['', 'force-ours', 'do not merge, preserve local files as is'],\n ['', 'force-theirs', 'do not merge, just overwrite with incoming files'],\n ['a', 'get-all', 'DEPRECATED. this is currently the default behavior'],\n ['', 'workspace-only', 'checkout only the components in the workspace to the selected lane'],\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 [\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 ['', 'verbose', 'display detailed information about components that legitimately were not switched'],\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 head,\n alias,\n autoMergeResolve,\n forceOurs,\n forceTheirs,\n getAll = false,\n workspaceOnly = false,\n skipDependencyInstallation = false,\n pattern,\n verbose,\n json = false,\n }: {\n head?: boolean;\n alias?: string;\n autoMergeResolve?: MergeStrategy;\n forceOurs?: boolean;\n forceTheirs?: boolean;\n getAll?: boolean;\n workspaceOnly?: boolean;\n skipDependencyInstallation?: boolean;\n override?: boolean;\n pattern?: string;\n verbose?: boolean;\n json?: boolean;\n }\n ) {\n const { components, failedComponents, installationError, compilationError } = await this.lanes.switchLanes(lane, {\n head,\n alias,\n merge: autoMergeResolve,\n forceOurs,\n forceTheirs,\n workspaceOnly,\n pattern,\n skipDependencyInstallation,\n });\n if (getAll) {\n this.lanes.logger.warn('the --get-all flag is deprecated and currently the default behavior');\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 = '\\nswitch skipped for the following component(s)';\n const body = compact(\n failedComponents.map((failedComponent) => {\n // all failures here are \"unchangedLegitimately\". otherwise, it would have been thrown as an error\n if (!verbose) return null;\n return `${chalk.bold(failedComponent.id.toString())} - ${chalk.white(failedComponent.unchangedMessage)}`;\n })\n ).join('\\n');\n if (!body) {\n return `${chalk.bold(`\\nswitch skipped legitimately for ${failedComponents.length} component(s)`)}\n (use --verbose to list them next time)`;\n }\n return `${chalk.underline(title)}\\n${body}`;\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\n return compact([\n getFailureOutput(),\n getSuccessfulOutput(),\n installationErrorOutput(installationError),\n compilationErrorOutput(compilationError),\n ]).join('\\n\\n');\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/lanes",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.470",
|
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": "1.0.
|
9
|
+
"version": "1.0.470"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -31,35 +31,35 @@
|
|
31
31
|
"@teambit/lanes.ui.compare.lane-compare-page": "0.0.162",
|
32
32
|
"@teambit/lanes.ui.compare.lane-compare": "0.0.193",
|
33
33
|
"@teambit/lanes.ui.navigation.lane-switcher": "0.0.225",
|
34
|
-
"@teambit/checkout": "1.0.
|
35
|
-
"@teambit/cli": "0.0.
|
36
|
-
"@teambit/importer": "1.0.
|
34
|
+
"@teambit/checkout": "1.0.470",
|
35
|
+
"@teambit/cli": "0.0.1047",
|
36
|
+
"@teambit/importer": "1.0.470",
|
37
37
|
"@teambit/legacy.cli.prompts": "0.0.2",
|
38
|
-
"@teambit/scope": "1.0.
|
39
|
-
"@teambit/workspace": "1.0.
|
40
|
-
"@teambit/express": "0.0.
|
41
|
-
"@teambit/logger": "0.0.
|
42
|
-
"@teambit/graphql": "1.0.
|
43
|
-
"@teambit/component-compare": "1.0.
|
44
|
-
"@teambit/component-writer": "1.0.
|
45
|
-
"@teambit/component": "1.0.
|
46
|
-
"@teambit/export": "1.0.
|
38
|
+
"@teambit/scope": "1.0.470",
|
39
|
+
"@teambit/workspace": "1.0.470",
|
40
|
+
"@teambit/express": "0.0.1146",
|
41
|
+
"@teambit/logger": "0.0.1140",
|
42
|
+
"@teambit/graphql": "1.0.470",
|
43
|
+
"@teambit/component-compare": "1.0.470",
|
44
|
+
"@teambit/component-writer": "1.0.470",
|
45
|
+
"@teambit/component": "1.0.470",
|
46
|
+
"@teambit/export": "1.0.470",
|
47
47
|
"@teambit/harmony.modules.concurrency": "0.0.1",
|
48
|
-
"@teambit/install": "1.0.
|
48
|
+
"@teambit/install": "1.0.470",
|
49
49
|
"@teambit/lanes.entities.lane-diff": "0.0.168",
|
50
|
-
"@teambit/lanes.modules.create-lane": "0.0.
|
51
|
-
"@teambit/lanes.modules.diff": "0.0.
|
52
|
-
"@teambit/legacy.component-diff": "0.0.
|
53
|
-
"@teambit/legacy.component-list": "0.0.
|
54
|
-
"@teambit/merging": "1.0.
|
55
|
-
"@teambit/remove": "1.0.
|
56
|
-
"@teambit/command-bar": "1.0.
|
50
|
+
"@teambit/lanes.modules.create-lane": "0.0.28",
|
51
|
+
"@teambit/lanes.modules.diff": "0.0.491",
|
52
|
+
"@teambit/legacy.component-diff": "0.0.47",
|
53
|
+
"@teambit/legacy.component-list": "0.0.48",
|
54
|
+
"@teambit/merging": "1.0.470",
|
55
|
+
"@teambit/remove": "1.0.470",
|
56
|
+
"@teambit/command-bar": "1.0.470",
|
57
57
|
"@teambit/lanes.hooks.use-lanes": "0.0.274",
|
58
58
|
"@teambit/lanes.hooks.use-viewed-lane-from-url": "0.0.228",
|
59
59
|
"@teambit/lanes.ui.lane-overview": "0.0.246",
|
60
60
|
"@teambit/lanes.ui.menus.use-lanes-menu": "0.0.223",
|
61
61
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.512",
|
62
|
-
"@teambit/ui": "1.0.
|
62
|
+
"@teambit/ui": "1.0.470"
|
63
63
|
},
|
64
64
|
"devDependencies": {
|
65
65
|
"@types/lodash": "4.14.165",
|
@@ -68,10 +68,10 @@
|
|
68
68
|
"fs-extra": "10.0.0",
|
69
69
|
"@types/mocha": "9.1.0",
|
70
70
|
"@teambit/harmony.envs.core-aspect-env": "0.0.60",
|
71
|
-
"@teambit/component.testing.mock-components": "0.0.
|
72
|
-
"@teambit/harmony.testing.load-aspect": "0.0.
|
73
|
-
"@teambit/merge-lanes": "1.0.
|
74
|
-
"@teambit/snapping": "1.0.
|
71
|
+
"@teambit/component.testing.mock-components": "0.0.253",
|
72
|
+
"@teambit/harmony.testing.load-aspect": "0.0.248",
|
73
|
+
"@teambit/merge-lanes": "1.0.470",
|
74
|
+
"@teambit/snapping": "1.0.470",
|
75
75
|
"@teambit/workspace.testing.mock-workspace": "0.0.27"
|
76
76
|
},
|
77
77
|
"peerDependencies": {
|