@teambit/lanes 0.0.385 → 0.0.386
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/dist/lane.cmd.d.ts +2 -1
- package/dist/lane.cmd.js +10 -4
- package/dist/lane.cmd.js.map +1 -1
- package/package-tar/teambit-lanes-0.0.386.tgz +0 -0
- package/package.json +16 -16
- package/{preview-1660188657912.js → preview-1660275011373.js} +2 -2
- package/package-tar/teambit-lanes-0.0.385.tgz +0 -0
package/dist/lane.cmd.d.ts
CHANGED
@@ -117,7 +117,7 @@ export declare class LaneMergeCmd implements Command {
|
|
117
117
|
migration: boolean;
|
118
118
|
remoteOp: boolean;
|
119
119
|
constructor(lanes: LanesMain);
|
120
|
-
report([name, pattern]: [string, string], { ours, theirs, manual, remote: remoteName, build, workspace: existingOnWorkspaceOnly, noSnap, message: snapMessage, keepReadme, squash, skipDependencyInstallation, includeDeps, }: {
|
120
|
+
report([name, pattern]: [string, string], { ours, theirs, manual, remote: remoteName, build, workspace: existingOnWorkspaceOnly, noSnap, message: snapMessage, keepReadme, squash, skipDependencyInstallation, includeDeps, verbose, }: {
|
121
121
|
ours: boolean;
|
122
122
|
theirs: boolean;
|
123
123
|
manual: boolean;
|
@@ -130,6 +130,7 @@ export declare class LaneMergeCmd implements Command {
|
|
130
130
|
squash: boolean;
|
131
131
|
skipDependencyInstallation?: boolean;
|
132
132
|
includeDeps?: boolean;
|
133
|
+
verbose?: boolean;
|
133
134
|
}): Promise<string>;
|
134
135
|
}
|
135
136
|
export declare class LaneRemoveCmd implements Command {
|
package/dist/lane.cmd.js
CHANGED
@@ -103,7 +103,10 @@ function _removeTemplate() {
|
|
103
103
|
return data;
|
104
104
|
}
|
105
105
|
|
106
|
-
|
106
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
107
|
+
|
108
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2().default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
109
|
+
|
107
110
|
class LaneListCmd {
|
108
111
|
constructor(lanes, workspace, scope) {
|
109
112
|
this.lanes = lanes;
|
@@ -388,7 +391,7 @@ class LaneMergeCmd {
|
|
388
391
|
description: 'EXPERIMENTAL. partially merge the lane with the specified component-pattern'
|
389
392
|
}]);
|
390
393
|
(0, _defineProperty2().default)(this, "alias", '');
|
391
|
-
(0, _defineProperty2().default)(this, "options", [['', 'remote <scope-name>', 'remote scope name'], ['', 'ours', 'in case of a conflict, override the used version with the current modification'], ['', 'theirs', 'in case of a conflict, override the current modification with the specified version'], ['', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'], ['', 'workspace', 'merge only components in a lane that exist in the workspace'], ['', 'no-snap', 'do not auto snap in case the merge completed without conflicts'], ['', 'build', 'in case of snap during the merge, run the build-pipeline (similar to bit snap --build)'], ['m', 'message <message>', 'override the default message for the auto snap'], ['', 'keep-readme', 'skip deleting the lane readme component after merging'], ['', 'squash', 'EXPERIMENTAL. squash multiple snaps. keep the last one only'], ['', 'skip-dependency-installation', 'do not install packages of the imported components'], ['', 'include-deps', 'EXPERIMENTAL. relevant for "--pattern" and "--workspace". merge also dependencies of the given components']]);
|
394
|
+
(0, _defineProperty2().default)(this, "options", [['', 'remote <scope-name>', 'remote scope name'], ['', 'ours', 'in case of a conflict, override the used version with the current modification'], ['', 'theirs', 'in case of a conflict, override the current modification with the specified version'], ['', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'], ['', 'workspace', 'merge only components in a lane that exist in the workspace'], ['', 'no-snap', 'do not auto snap in case the merge completed without conflicts'], ['', 'build', 'in case of snap during the merge, run the build-pipeline (similar to bit snap --build)'], ['m', 'message <message>', 'override the default message for the auto snap'], ['', 'keep-readme', 'skip deleting the lane readme component after merging'], ['', 'squash', 'EXPERIMENTAL. squash multiple snaps. keep the last one only'], ['', 'verbose', 'show details of components that were not merged legitimately'], ['', 'skip-dependency-installation', 'do not install packages of the imported components'], ['', 'include-deps', 'EXPERIMENTAL. relevant for "--pattern" and "--workspace". merge also dependencies of the given components']]);
|
392
395
|
(0, _defineProperty2().default)(this, "loader", true);
|
393
396
|
(0, _defineProperty2().default)(this, "private", true);
|
394
397
|
(0, _defineProperty2().default)(this, "migration", true);
|
@@ -407,7 +410,8 @@ class LaneMergeCmd {
|
|
407
410
|
keepReadme = false,
|
408
411
|
squash = false,
|
409
412
|
skipDependencyInstallation = false,
|
410
|
-
includeDeps = false
|
413
|
+
includeDeps = false,
|
414
|
+
verbose = false
|
411
415
|
}) {
|
412
416
|
build = (0, _featureToggle().isFeatureEnabled)(_featureToggle().BUILD_ON_CI) ? Boolean(build) : true;
|
413
417
|
const mergeStrategy = (0, _mergeVersion().getMergeStrategy)(ours, theirs, manual);
|
@@ -435,7 +439,9 @@ class LaneMergeCmd {
|
|
435
439
|
skipDependencyInstallation,
|
436
440
|
includeDeps
|
437
441
|
});
|
438
|
-
const mergeResult =
|
442
|
+
const mergeResult = (0, _merging().mergeReport)(_objectSpread(_objectSpread({}, mergeResults), {}, {
|
443
|
+
verbose
|
444
|
+
}));
|
439
445
|
const deleteResult = `${deleteResults.localResult ? (0, _removeTemplate().default)(deleteResults.localResult, false) : ''}${(deleteResults.remoteResult || []).map(item => (0, _removeTemplate().default)(item, true))}${deleteResults.readmeResult && _chalk().default.yellow(deleteResults.readmeResult) || ''}\n`;
|
440
446
|
return mergeResult + deleteResult;
|
441
447
|
}
|
package/dist/lane.cmd.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["LaneListCmd","constructor","lanes","workspace","scope","report","args","laneOptions","details","remote","merged","notMerged","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","name","join","unmergedLanes","currentLane","getCurrentLane","laneDataOfCurrentLane","find","undefined","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","remoteOfCurrentLane","currentLaneComponents","outputComponents","components","outputRemoteLane","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","LaneShowCmd","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","LaneCreateCmd","description","createLaneOptions","result","createLane","remoteScopeOrDefaultScope","remoteScope","localLane","remoteScopeOutput","LaneAliasCmd","laneName","alias","laneId","aliasLane","toString","LaneChangeScopeCmd","localName","remoteScopeBefore","changeScope","LaneRenameCmd","currentName","newName","exported","exportErr","rename","exportedStr","message","LaneMergeCmd","pattern","ours","theirs","manual","remoteName","build","existingOnWorkspaceOnly","noSnap","snapMessage","keepReadme","squash","skipDependencyInstallation","includeDeps","isFeatureEnabled","BUILD_ON_CI","Boolean","mergeStrategy","getMergeStrategy","BitError","mergeResults","deleteResults","mergeLane","mergeResult","mergeReport","deleteResult","localResult","paintRemoved","remoteResult","item","readmeResult","yellow","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","laneResults","removeLanes","LaneImportCmd","switchCmd","lane","getAll","LaneCmd","docsDomain","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","id","head","component","remoteLane"],"sources":["lane.cmd.ts"],"sourcesContent":["// eslint-disable-next-line max-classes-per-file\nimport chalk from 'chalk';\nimport yn from 'yn';\nimport { ScopeMain } from '@teambit/scope';\nimport { Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { getMergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { mergeReport } from '@teambit/merging';\nimport { BUILD_ON_CI, isFeatureEnabled } from '@teambit/legacy/dist/api/consumer/lib/feature-toggle';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport paintRemoved from '@teambit/legacy/dist/cli/templates/remove-template';\nimport { CreateLaneOptions, LanesMain } from './lanes.main.runtime';\nimport { SwitchCmd } from './switch.cmd';\n\ntype LaneOptions = {\n details?: boolean;\n remote?: string;\n merged?: boolean;\n notMerged?: boolean;\n json?: boolean;\n};\n\nexport class LaneListCmd implements Command {\n name = 'list';\n description = `list lanes`;\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in a json format'],\n ['r', 'remote <remote-scope-name>', 'show remote lanes'],\n ['', 'merged', 'show merged lanes'],\n ['', 'not-merged', 'show lanes that are not merged'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report(args, laneOptions: LaneOptions): Promise<string> {\n const { details, remote, merged, notMerged } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n remote,\n merged,\n notMerged,\n showDefaultLane: true,\n });\n if (merged) {\n const mergedLanes = lanes.filter((l) => l.isMerged);\n if (!mergedLanes.length) return chalk.green('None of the lanes is merged');\n return chalk.green(mergedLanes.map((m) => m.name).join('\\n'));\n }\n if (notMerged) {\n const unmergedLanes = lanes.filter((l) => !l.isMerged);\n if (!unmergedLanes.length) return chalk.green('All lanes are merged');\n return chalk.green(unmergedLanes.map((m) => m.name).join('\\n'));\n }\n const currentLane = this.lanes.getCurrentLane();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => l.name === currentLane) : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = currentLane ? `current lane - ${chalk.green.green(currentLane as string)}` : '';\n currentLaneStr += currentLaneReadmeComponentStr;\n\n if (details) {\n const remoteOfCurrentLane = laneDataOfCurrentLane ? laneDataOfCurrentLane.remote : null;\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `${outputRemoteLane(remoteOfCurrentLane)}\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => l.name !== currentLane)\n // @ts-ignore\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneData.name)}${outputRemoteLane(laneData.remote)}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneData.name)} (${laneData.components.length} components)${readmeComponentStr}`;\n })\n .join('\\n');\n\n const outputFooter = () => {\n let footer = '\\n';\n if (details) {\n footer += 'You can use --merged and --not-merged to see which of the lanes is fully merged.';\n } else {\n footer +=\n \"to get more info on all lanes in workspace use 'bit lane list --details' or 'bit lane show <lane-name>' for a specific lane.\";\n }\n if (!remote && this.workspace) footer += `\\nswitch lanes using 'bit switch <name>'.`;\n\n return footer;\n };\n\n return outputCurrentLane() + outputAvailableLanes() + outputFooter();\n\n function outputCurrentLane() {\n return currentLaneStr ? `${currentLaneStr}\\n` : '';\n }\n\n function outputAvailableLanes() {\n if (!availableLanes) return '';\n return remote ? `${availableLanes}\\n` : `\\nAvailable lanes:\\n${availableLanes}\\n`;\n }\n }\n async json(args, laneOptions: LaneOptions) {\n const { remote, merged = false, notMerged = false } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n remote,\n showDefaultLane: true,\n merged,\n notMerged,\n });\n const currentLane = this.lanes.getCurrentLane();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show <lane-name>';\n description = `show lane details`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote <string>', 'show remote lanes'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(name)}${outputRemoteLane(onlyLane.remote)}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date ? `${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n` : undefined;\n return title + author + date + outputComponents(onlyLane.components);\n }\n\n async json([name]: [string], laneOptions: LaneOptions) {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n return lanes[0];\n }\n}\n\nexport class LaneCreateCmd implements Command {\n name = 'create <lane-name>';\n arguments = [\n {\n name: 'lane-name',\n description: 'the name for the new lane',\n },\n ];\n description = `creates a new lane and switches to it`;\n extendedDescription = `a lane created from main (default-lane) is empty until components are snapped.\na lane created from another lane has all the components of the original lane.`;\n alias = '';\n options = [\n [\n '',\n 'remote-scope <scope-name>',\n 'remote scope where this lane will be exported to, default to the defaultScope (can be changed later with \"bit lane change-scope\")',\n ],\n [\n '',\n 'alias <name>',\n 'a local alias to refer to this lane, defaults to the <lane-name> (can be added later with \"bit lane alias\")',\n ],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions): Promise<string> {\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.remoteScope\n ? `the remote scope ${chalk.bold(createLaneOptions.remoteScope)}`\n : `the default-scope ${chalk.bold(result.remoteScope)}. to change it, please run \"bit lane track\" command`;\n const title = chalk.green(`successfully added and checked out to a new lane ${chalk.bold(result.localLane)}`);\n const remoteScopeOutput = `this lane will be exported to ${remoteScopeOrDefaultScope}`;\n return `${title}\\n${remoteScopeOutput}`;\n }\n}\n\nexport class LaneAliasCmd implements Command {\n name = 'alias <lane-name> <alias>';\n description = 'adds an alias to a lane';\n extendedDescription = `an alias is a name that can be used to refer to a lane. it is saved locally and never reach the remote.\nit is useful when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName, alias]: [string, string, string]): Promise<string> {\n const { laneId } = await this.lanes.aliasLane(laneName, alias);\n return `successfully added the alias ${chalk.bold(alias)} to the lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <lane-name> <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([localName, remoteScope]: [string, string]): Promise<string> {\n const { remoteScopeBefore } = await this.lanes.changeScope(localName, remoteScope);\n return `the remote-scope of ${chalk.bold(localName)} has been changed from ${chalk.bold(\n remoteScopeBefore\n )} to ${chalk.bold(remoteScope)}`;\n }\n}\n\nexport class LaneRenameCmd implements Command {\n name = 'rename <current-name> <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([currentName, newName]: [string, string]): Promise<string> {\n const { exported, exportErr } = await this.lanes.rename(currentName, newName);\n const exportedStr = exported\n ? `and have been exported successfully to the remote`\n : `however if failed to export the renamed lane to the remote, due to an error: ${\n exportErr?.message || 'unknown'\n }`;\n return `the lane ${chalk.bold(currentName)} has been changed to ${chalk.bold(newName)}, ${exportedStr}`;\n }\n}\n\nexport class LaneMergeCmd implements Command {\n name = 'merge <lane> [pattern]';\n description = `merge a local or a remote lane`;\n arguments = [\n {\n name: 'lane',\n description: 'lane-name to merge to the current lane',\n },\n {\n name: 'pattern',\n description: 'EXPERIMENTAL. partially merge the lane with the specified component-pattern',\n },\n ];\n alias = '';\n options = [\n ['', 'remote <scope-name>', 'remote scope name'],\n ['', 'ours', 'in case of a conflict, override the used version with the current modification'],\n ['', 'theirs', 'in case of a conflict, override the current modification with the specified version'],\n ['', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'],\n ['', 'workspace', 'merge only components in a lane that exist in the workspace'],\n ['', 'no-snap', 'do not auto snap in case the merge completed without conflicts'],\n ['', 'build', 'in case of snap during the merge, run the build-pipeline (similar to bit snap --build)'],\n ['m', 'message <message>', 'override the default message for the auto snap'],\n ['', 'keep-readme', 'skip deleting the lane readme component after merging'],\n ['', 'squash', 'EXPERIMENTAL. squash multiple snaps. keep the last one only'],\n ['', 'skip-dependency-installation', 'do not install packages of the imported components'],\n [\n '',\n 'include-deps',\n 'EXPERIMENTAL. relevant for \"--pattern\" and \"--workspace\". merge also dependencies of the given components',\n ],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [name, pattern]: [string, string],\n {\n ours = false,\n theirs = false,\n manual = false,\n remote: remoteName,\n build,\n workspace: existingOnWorkspaceOnly = false,\n noSnap = false,\n message: snapMessage = '',\n keepReadme = false,\n squash = false,\n skipDependencyInstallation = false,\n includeDeps = false,\n }: {\n ours: boolean;\n theirs: boolean;\n manual: boolean;\n remote?: string;\n workspace?: boolean;\n build?: boolean;\n noSnap: boolean;\n message: string;\n keepReadme?: boolean;\n squash: boolean;\n skipDependencyInstallation?: boolean;\n includeDeps?: boolean;\n }\n ): Promise<string> {\n build = isFeatureEnabled(BUILD_ON_CI) ? Boolean(build) : true;\n const mergeStrategy = getMergeStrategy(ours, theirs, manual);\n if (noSnap && snapMessage) throw new BitError('unable to use \"noSnap\" and \"message\" flags together');\n if (includeDeps && !pattern && !existingOnWorkspaceOnly) {\n throw new BitError(`\"--include-deps\" flag is relevant only for --workspace and --pattern flags`);\n }\n const { mergeResults, deleteResults } = await this.lanes.mergeLane(name, {\n // @ts-ignore\n remoteName,\n build,\n // @ts-ignore\n mergeStrategy,\n existingOnWorkspaceOnly,\n noSnap,\n snapMessage,\n keepReadme,\n squash,\n pattern,\n skipDependencyInstallation,\n includeDeps,\n });\n\n const mergeResult = `${mergeReport(mergeResults)}`;\n const deleteResult = `${deleteResults.localResult ? paintRemoved(deleteResults.localResult, false) : ''}${(\n deleteResults.remoteResult || []\n ).map((item) => paintRemoved(item, true))}${\n (deleteResults.readmeResult && chalk.yellow(deleteResults.readmeResult)) || ''\n }\\n`;\n return mergeResult + deleteResult;\n }\n}\n\nexport class LaneRemoveCmd implements Command {\n name = 'remove <lanes...>';\n arguments = [{ name: 'lanes...', description: 'A list of lane names, separated by spaces' }];\n description = `remove lanes`;\n alias = '';\n options = [\n ['r', 'remote', 'remove a remote lane (in the lane arg, use remote/lane-id syntax)'],\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 ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [names]: [string[]],\n {\n remote = false,\n force = false,\n silent = false,\n }: {\n remote: boolean;\n force: boolean;\n silent: boolean;\n }\n ): Promise<string> {\n if (!silent) {\n const removePromptResult = await approveOperation();\n // @ts-ignore\n if (!yn(removePromptResult.shouldProceed)) {\n throw new BitError('the operation has been canceled');\n }\n }\n const laneResults = await this.lanes.removeLanes(names, { remote, force });\n return chalk.green(`successfully removed the following lane(s): ${chalk.bold(laneResults.join(', '))}`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false }: { skipDependencyInstallation: boolean }\n ): Promise<string> {\n return this.switchCmd.report([lane], { getAll: true, skipDependencyInstallation });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [lane-name]';\n description = 'show lanes details';\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in json format'],\n ['r', 'remote <string>', 'show remote lanes'],\n ['', 'merged', 'show merged lanes'],\n ['', 'not-merged', 'show not merged lanes'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain, docsDomain: string) {\n this.description = `show lanes details\nhttps://${docsDomain}/components/lanes`;\n }\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n return new LaneListCmd(this.lanes, this.workspace, this.scope).report([name], laneOptions);\n }\n}\n\nexport class LaneRemoveReadmeCmd implements Command {\n name = 'remove-readme [laneName]';\n description = 'EXPERIMENTAL. remove lane readme component';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const { result, message } = await this.lanes.removeLaneReadme(laneName);\n\n if (result) {\n return chalk.green(\n `the readme component has been successfully removed from the lane ${laneName || this.lanes.getCurrentLane()}`\n );\n }\n\n return chalk.red(`${message}\\n`);\n }\n}\n\nexport class LaneAddReadmeCmd implements Command {\n name = 'add-readme <component-name> [lane-name]';\n description = 'EXPERIMENTAL. adds a readme component to a lane';\n arguments = [\n { name: 'component-id', description: \"the component name or id of the component to use as the lane's readme\" },\n { name: 'lane-name', description: 'the lane to attach the readme to (defaults to the current lane)' },\n ];\n options = [] as CommandOptions;\n loader = true;\n private = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([componentId, laneName]: [string, string]): Promise<string> {\n const { result, message } = await this.lanes.addLaneReadme(componentId, laneName);\n\n if (result)\n return chalk.green(\n `the component ${componentId} has been successfully added as the readme component for the lane ${\n laneName || this.lanes.getCurrentLane()\n }`\n );\n\n return chalk.red(\n `${message || ''}\\nthe component ${componentId} could not be added as a readme component for the lane ${\n laneName || this.lanes.getCurrentLane()\n }`\n );\n }\n}\n\nfunction outputComponents(components: LaneData['components']): string {\n const componentsTitle = `\\t${chalk.bold(`components (${components.length})`)}\\n`;\n const componentsStr = components.map((c) => `\\t ${c.id.toString()} - ${c.head}`).join('\\n');\n return componentsTitle + componentsStr;\n}\n\nfunction outputReadmeComponent(component: LaneData['readmeComponent']): string {\n if (!component) return '';\n return `\\n\\t${`${chalk.yellow('readme component')}\\n\\t ${component.id} - ${\n component.head ||\n `(unsnapped)\\n\\t(\"use bit snap ${component.id.name}\" to snap the readme component on the lane before exporting)`\n }`}\\n`;\n}\n\nfunction outputRemoteLane(remoteLane: string | null | undefined): string {\n if (!remoteLane) return '';\n return ` - (remote lane - ${remoteLane})`;\n}\n"],"mappings":"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"}
|
1
|
+
{"version":3,"names":["LaneListCmd","constructor","lanes","workspace","scope","report","args","laneOptions","details","remote","merged","notMerged","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","name","join","unmergedLanes","currentLane","getCurrentLane","laneDataOfCurrentLane","find","undefined","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","remoteOfCurrentLane","currentLaneComponents","outputComponents","components","outputRemoteLane","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","LaneShowCmd","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","LaneCreateCmd","description","createLaneOptions","result","createLane","remoteScopeOrDefaultScope","remoteScope","localLane","remoteScopeOutput","LaneAliasCmd","laneName","alias","laneId","aliasLane","toString","LaneChangeScopeCmd","localName","remoteScopeBefore","changeScope","LaneRenameCmd","currentName","newName","exported","exportErr","rename","exportedStr","message","LaneMergeCmd","pattern","ours","theirs","manual","remoteName","build","existingOnWorkspaceOnly","noSnap","snapMessage","keepReadme","squash","skipDependencyInstallation","includeDeps","verbose","isFeatureEnabled","BUILD_ON_CI","Boolean","mergeStrategy","getMergeStrategy","BitError","mergeResults","deleteResults","mergeLane","mergeResult","mergeReport","deleteResult","localResult","paintRemoved","remoteResult","item","readmeResult","yellow","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","laneResults","removeLanes","LaneImportCmd","switchCmd","lane","getAll","LaneCmd","docsDomain","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","id","head","component","remoteLane"],"sources":["lane.cmd.ts"],"sourcesContent":["// eslint-disable-next-line max-classes-per-file\nimport chalk from 'chalk';\nimport yn from 'yn';\nimport { ScopeMain } from '@teambit/scope';\nimport { Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { getMergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { mergeReport } from '@teambit/merging';\nimport { BUILD_ON_CI, isFeatureEnabled } from '@teambit/legacy/dist/api/consumer/lib/feature-toggle';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport paintRemoved from '@teambit/legacy/dist/cli/templates/remove-template';\nimport { CreateLaneOptions, LanesMain } from './lanes.main.runtime';\nimport { SwitchCmd } from './switch.cmd';\n\ntype LaneOptions = {\n details?: boolean;\n remote?: string;\n merged?: boolean;\n notMerged?: boolean;\n json?: boolean;\n};\n\nexport class LaneListCmd implements Command {\n name = 'list';\n description = `list lanes`;\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in a json format'],\n ['r', 'remote <remote-scope-name>', 'show remote lanes'],\n ['', 'merged', 'show merged lanes'],\n ['', 'not-merged', 'show lanes that are not merged'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report(args, laneOptions: LaneOptions): Promise<string> {\n const { details, remote, merged, notMerged } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n remote,\n merged,\n notMerged,\n showDefaultLane: true,\n });\n if (merged) {\n const mergedLanes = lanes.filter((l) => l.isMerged);\n if (!mergedLanes.length) return chalk.green('None of the lanes is merged');\n return chalk.green(mergedLanes.map((m) => m.name).join('\\n'));\n }\n if (notMerged) {\n const unmergedLanes = lanes.filter((l) => !l.isMerged);\n if (!unmergedLanes.length) return chalk.green('All lanes are merged');\n return chalk.green(unmergedLanes.map((m) => m.name).join('\\n'));\n }\n const currentLane = this.lanes.getCurrentLane();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => l.name === currentLane) : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = currentLane ? `current lane - ${chalk.green.green(currentLane as string)}` : '';\n currentLaneStr += currentLaneReadmeComponentStr;\n\n if (details) {\n const remoteOfCurrentLane = laneDataOfCurrentLane ? laneDataOfCurrentLane.remote : null;\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `${outputRemoteLane(remoteOfCurrentLane)}\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => l.name !== currentLane)\n // @ts-ignore\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneData.name)}${outputRemoteLane(laneData.remote)}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneData.name)} (${laneData.components.length} components)${readmeComponentStr}`;\n })\n .join('\\n');\n\n const outputFooter = () => {\n let footer = '\\n';\n if (details) {\n footer += 'You can use --merged and --not-merged to see which of the lanes is fully merged.';\n } else {\n footer +=\n \"to get more info on all lanes in workspace use 'bit lane list --details' or 'bit lane show <lane-name>' for a specific lane.\";\n }\n if (!remote && this.workspace) footer += `\\nswitch lanes using 'bit switch <name>'.`;\n\n return footer;\n };\n\n return outputCurrentLane() + outputAvailableLanes() + outputFooter();\n\n function outputCurrentLane() {\n return currentLaneStr ? `${currentLaneStr}\\n` : '';\n }\n\n function outputAvailableLanes() {\n if (!availableLanes) return '';\n return remote ? `${availableLanes}\\n` : `\\nAvailable lanes:\\n${availableLanes}\\n`;\n }\n }\n async json(args, laneOptions: LaneOptions) {\n const { remote, merged = false, notMerged = false } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n remote,\n showDefaultLane: true,\n merged,\n notMerged,\n });\n const currentLane = this.lanes.getCurrentLane();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show <lane-name>';\n description = `show lane details`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote <string>', 'show remote lanes'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(name)}${outputRemoteLane(onlyLane.remote)}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date ? `${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n` : undefined;\n return title + author + date + outputComponents(onlyLane.components);\n }\n\n async json([name]: [string], laneOptions: LaneOptions) {\n const { remote } = laneOptions;\n\n const lanes = await this.lanes.getLanes({\n name,\n remote,\n });\n return lanes[0];\n }\n}\n\nexport class LaneCreateCmd implements Command {\n name = 'create <lane-name>';\n arguments = [\n {\n name: 'lane-name',\n description: 'the name for the new lane',\n },\n ];\n description = `creates a new lane and switches to it`;\n extendedDescription = `a lane created from main (default-lane) is empty until components are snapped.\na lane created from another lane has all the components of the original lane.`;\n alias = '';\n options = [\n [\n '',\n 'remote-scope <scope-name>',\n 'remote scope where this lane will be exported to, default to the defaultScope (can be changed later with \"bit lane change-scope\")',\n ],\n [\n '',\n 'alias <name>',\n 'a local alias to refer to this lane, defaults to the <lane-name> (can be added later with \"bit lane alias\")',\n ],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions): Promise<string> {\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.remoteScope\n ? `the remote scope ${chalk.bold(createLaneOptions.remoteScope)}`\n : `the default-scope ${chalk.bold(result.remoteScope)}. to change it, please run \"bit lane track\" command`;\n const title = chalk.green(`successfully added and checked out to a new lane ${chalk.bold(result.localLane)}`);\n const remoteScopeOutput = `this lane will be exported to ${remoteScopeOrDefaultScope}`;\n return `${title}\\n${remoteScopeOutput}`;\n }\n}\n\nexport class LaneAliasCmd implements Command {\n name = 'alias <lane-name> <alias>';\n description = 'adds an alias to a lane';\n extendedDescription = `an alias is a name that can be used to refer to a lane. it is saved locally and never reach the remote.\nit is useful when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName, alias]: [string, string, string]): Promise<string> {\n const { laneId } = await this.lanes.aliasLane(laneName, alias);\n return `successfully added the alias ${chalk.bold(alias)} to the lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <lane-name> <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([localName, remoteScope]: [string, string]): Promise<string> {\n const { remoteScopeBefore } = await this.lanes.changeScope(localName, remoteScope);\n return `the remote-scope of ${chalk.bold(localName)} has been changed from ${chalk.bold(\n remoteScopeBefore\n )} to ${chalk.bold(remoteScope)}`;\n }\n}\n\nexport class LaneRenameCmd implements Command {\n name = 'rename <current-name> <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`;\n alias = '';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([currentName, newName]: [string, string]): Promise<string> {\n const { exported, exportErr } = await this.lanes.rename(currentName, newName);\n const exportedStr = exported\n ? `and have been exported successfully to the remote`\n : `however if failed to export the renamed lane to the remote, due to an error: ${\n exportErr?.message || 'unknown'\n }`;\n return `the lane ${chalk.bold(currentName)} has been changed to ${chalk.bold(newName)}, ${exportedStr}`;\n }\n}\n\nexport class LaneMergeCmd implements Command {\n name = 'merge <lane> [pattern]';\n description = `merge a local or a remote lane`;\n arguments = [\n {\n name: 'lane',\n description: 'lane-name to merge to the current lane',\n },\n {\n name: 'pattern',\n description: 'EXPERIMENTAL. partially merge the lane with the specified component-pattern',\n },\n ];\n alias = '';\n options = [\n ['', 'remote <scope-name>', 'remote scope name'],\n ['', 'ours', 'in case of a conflict, override the used version with the current modification'],\n ['', 'theirs', 'in case of a conflict, override the current modification with the specified version'],\n ['', 'manual', 'in case of a conflict, leave the files with a conflict state to resolve them manually later'],\n ['', 'workspace', 'merge only components in a lane that exist in the workspace'],\n ['', 'no-snap', 'do not auto snap in case the merge completed without conflicts'],\n ['', 'build', 'in case of snap during the merge, run the build-pipeline (similar to bit snap --build)'],\n ['m', 'message <message>', 'override the default message for the auto snap'],\n ['', 'keep-readme', 'skip deleting the lane readme component after merging'],\n ['', 'squash', 'EXPERIMENTAL. squash multiple snaps. keep the last one only'],\n ['', 'verbose', 'show details of components that were not merged legitimately'],\n ['', 'skip-dependency-installation', 'do not install packages of the imported components'],\n [\n '',\n 'include-deps',\n 'EXPERIMENTAL. relevant for \"--pattern\" and \"--workspace\". merge also dependencies of the given components',\n ],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [name, pattern]: [string, string],\n {\n ours = false,\n theirs = false,\n manual = false,\n remote: remoteName,\n build,\n workspace: existingOnWorkspaceOnly = false,\n noSnap = false,\n message: snapMessage = '',\n keepReadme = false,\n squash = false,\n skipDependencyInstallation = false,\n includeDeps = false,\n verbose = false,\n }: {\n ours: boolean;\n theirs: boolean;\n manual: boolean;\n remote?: string;\n workspace?: boolean;\n build?: boolean;\n noSnap: boolean;\n message: string;\n keepReadme?: boolean;\n squash: boolean;\n skipDependencyInstallation?: boolean;\n includeDeps?: boolean;\n verbose?: boolean;\n }\n ): Promise<string> {\n build = isFeatureEnabled(BUILD_ON_CI) ? Boolean(build) : true;\n const mergeStrategy = getMergeStrategy(ours, theirs, manual);\n if (noSnap && snapMessage) throw new BitError('unable to use \"noSnap\" and \"message\" flags together');\n if (includeDeps && !pattern && !existingOnWorkspaceOnly) {\n throw new BitError(`\"--include-deps\" flag is relevant only for --workspace and --pattern flags`);\n }\n const { mergeResults, deleteResults } = await this.lanes.mergeLane(name, {\n // @ts-ignore\n remoteName,\n build,\n // @ts-ignore\n mergeStrategy,\n existingOnWorkspaceOnly,\n noSnap,\n snapMessage,\n keepReadme,\n squash,\n pattern,\n skipDependencyInstallation,\n includeDeps,\n });\n\n const mergeResult = mergeReport({ ...mergeResults, verbose });\n const deleteResult = `${deleteResults.localResult ? paintRemoved(deleteResults.localResult, false) : ''}${(\n deleteResults.remoteResult || []\n ).map((item) => paintRemoved(item, true))}${\n (deleteResults.readmeResult && chalk.yellow(deleteResults.readmeResult)) || ''\n }\\n`;\n return mergeResult + deleteResult;\n }\n}\n\nexport class LaneRemoveCmd implements Command {\n name = 'remove <lanes...>';\n arguments = [{ name: 'lanes...', description: 'A list of lane names, separated by spaces' }];\n description = `remove lanes`;\n alias = '';\n options = [\n ['r', 'remote', 'remove a remote lane (in the lane arg, use remote/lane-id syntax)'],\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 ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report(\n [names]: [string[]],\n {\n remote = false,\n force = false,\n silent = false,\n }: {\n remote: boolean;\n force: boolean;\n silent: boolean;\n }\n ): Promise<string> {\n if (!silent) {\n const removePromptResult = await approveOperation();\n // @ts-ignore\n if (!yn(removePromptResult.shouldProceed)) {\n throw new BitError('the operation has been canceled');\n }\n }\n const laneResults = await this.lanes.removeLanes(names, { remote, force });\n return chalk.green(`successfully removed the following lane(s): ${chalk.bold(laneResults.join(', '))}`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false }: { skipDependencyInstallation: boolean }\n ): Promise<string> {\n return this.switchCmd.report([lane], { getAll: true, skipDependencyInstallation });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [lane-name]';\n description = 'show lanes details';\n alias = '';\n options = [\n ['d', 'details', 'show more details on the state of each component in each lane'],\n ['j', 'json', 'show lanes details in json format'],\n ['r', 'remote <string>', 'show remote lanes'],\n ['', 'merged', 'show merged lanes'],\n ['', 'not-merged', 'show not merged lanes'],\n ] as CommandOptions;\n loader = true;\n private = true;\n migration = true;\n remoteOp = true;\n skipWorkspace = true;\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain, docsDomain: string) {\n this.description = `show lanes details\nhttps://${docsDomain}/components/lanes`;\n }\n\n async report([name]: [string], laneOptions: LaneOptions): Promise<string> {\n return new LaneListCmd(this.lanes, this.workspace, this.scope).report([name], laneOptions);\n }\n}\n\nexport class LaneRemoveReadmeCmd implements Command {\n name = 'remove-readme [laneName]';\n description = 'EXPERIMENTAL. remove lane readme component';\n options = [] as CommandOptions;\n loader = true;\n private = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([laneName]: [string]): Promise<string> {\n const { result, message } = await this.lanes.removeLaneReadme(laneName);\n\n if (result) {\n return chalk.green(\n `the readme component has been successfully removed from the lane ${laneName || this.lanes.getCurrentLane()}`\n );\n }\n\n return chalk.red(`${message}\\n`);\n }\n}\n\nexport class LaneAddReadmeCmd implements Command {\n name = 'add-readme <component-name> [lane-name]';\n description = 'EXPERIMENTAL. adds a readme component to a lane';\n arguments = [\n { name: 'component-id', description: \"the component name or id of the component to use as the lane's readme\" },\n { name: 'lane-name', description: 'the lane to attach the readme to (defaults to the current lane)' },\n ];\n options = [] as CommandOptions;\n loader = true;\n private = true;\n skipWorkspace = false;\n\n constructor(private lanes: LanesMain) {}\n\n async report([componentId, laneName]: [string, string]): Promise<string> {\n const { result, message } = await this.lanes.addLaneReadme(componentId, laneName);\n\n if (result)\n return chalk.green(\n `the component ${componentId} has been successfully added as the readme component for the lane ${\n laneName || this.lanes.getCurrentLane()\n }`\n );\n\n return chalk.red(\n `${message || ''}\\nthe component ${componentId} could not be added as a readme component for the lane ${\n laneName || this.lanes.getCurrentLane()\n }`\n );\n }\n}\n\nfunction outputComponents(components: LaneData['components']): string {\n const componentsTitle = `\\t${chalk.bold(`components (${components.length})`)}\\n`;\n const componentsStr = components.map((c) => `\\t ${c.id.toString()} - ${c.head}`).join('\\n');\n return componentsTitle + componentsStr;\n}\n\nfunction outputReadmeComponent(component: LaneData['readmeComponent']): string {\n if (!component) return '';\n return `\\n\\t${`${chalk.yellow('readme component')}\\n\\t ${component.id} - ${\n component.head ||\n `(unsnapped)\\n\\t(\"use bit snap ${component.id.name}\" to snap the readme component on the lane before exporting)`\n }`}\\n`;\n}\n\nfunction outputRemoteLane(remoteLane: string | null | undefined): string {\n if (!remoteLane) return '';\n return ` - (remote lane - ${remoteLane})`;\n}\n"],"mappings":"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"}
|
Binary file
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/lanes",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.386",
|
4
4
|
"homepage": "https://bit.dev/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.
|
9
|
+
"version": "0.0.386"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -18,23 +18,23 @@
|
|
18
18
|
"core-js": "^3.0.0",
|
19
19
|
"@teambit/harmony": "0.3.3",
|
20
20
|
"@teambit/bit-error": "0.0.394",
|
21
|
-
"@teambit/lane-id": "0.0.
|
22
|
-
"@teambit/cli": "0.0.
|
23
|
-
"@teambit/merging": "0.0.
|
24
|
-
"@teambit/scope": "0.0.
|
25
|
-
"@teambit/workspace": "0.0.
|
26
|
-
"@teambit/graphql": "0.0.
|
27
|
-
"@teambit/community": "0.0.
|
28
|
-
"@teambit/component": "0.0.
|
29
|
-
"@teambit/lanes.modules.diff": "0.0.
|
21
|
+
"@teambit/lane-id": "0.0.63",
|
22
|
+
"@teambit/cli": "0.0.544",
|
23
|
+
"@teambit/merging": "0.0.129",
|
24
|
+
"@teambit/scope": "0.0.814",
|
25
|
+
"@teambit/workspace": "0.0.814",
|
26
|
+
"@teambit/graphql": "0.0.814",
|
27
|
+
"@teambit/community": "0.0.92",
|
28
|
+
"@teambit/component": "0.0.814",
|
29
|
+
"@teambit/lanes.modules.diff": "0.0.173",
|
30
30
|
"@teambit/legacy-bit-id": "0.0.402",
|
31
|
-
"@teambit/logger": "0.0.
|
31
|
+
"@teambit/logger": "0.0.637",
|
32
32
|
"@teambit/design.ui.pages.not-found": "0.0.356",
|
33
|
-
"@teambit/lanes.ui.lanes": "0.0.
|
34
|
-
"@teambit/sidebar": "0.0.
|
33
|
+
"@teambit/lanes.ui.lanes": "0.0.113",
|
34
|
+
"@teambit/sidebar": "0.0.814",
|
35
35
|
"@teambit/ui-foundation.ui.menu": "0.0.487",
|
36
36
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.490",
|
37
|
-
"@teambit/ui": "0.0.
|
37
|
+
"@teambit/ui": "0.0.814",
|
38
38
|
"@teambit/component-id": "0.0.405"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
@@ -51,7 +51,7 @@
|
|
51
51
|
},
|
52
52
|
"peerDependencies": {
|
53
53
|
"react-router-dom": "^6.0.0",
|
54
|
-
"@teambit/legacy": "1.0.
|
54
|
+
"@teambit/legacy": "1.0.327",
|
55
55
|
"react-dom": "^16.8.0 || ^17.0.0",
|
56
56
|
"react": "^16.8.0 || ^17.0.0"
|
57
57
|
},
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.386/dist/lanes.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.386/dist/lanes.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
Binary file
|