@teambit/lanes 0.0.730 → 0.0.731

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,8 +1,5 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.promise.js");
6
3
  Object.defineProperty(exports, "__esModule", {
7
4
  value: true
8
5
  });
@@ -59,6 +56,7 @@ function _lodash() {
59
56
  };
60
57
  return data;
61
58
  }
59
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
62
60
  // import { BitIds } from '@teambit/legacy/dist/bit-id';
63
61
 
64
62
  const MAX_LANE_NAME_LENGTH = 800;
@@ -1 +1 @@
1
- {"version":3,"names":["_bitError","data","require","_lane","_interopRequireDefault","_componentVersion","_snapping","_componentsList","_objects","_lodash","MAX_LANE_NAME_LENGTH","createLane","workspace","laneName","scopeName","remoteLane","consumer","lanes","scope","listLanes","find","lane","name","BitError","bitCloudUser","getBitCloudUser","throwForInvalidLaneName","throwForStagedComponents","getDataToPopulateLaneObjectIfNeeded","components","currentLaneObject","getCurrentLaneObject","laneComponents","workspaceIds","bitMap","getAllBitIds","laneComponentWithBitmapHead","Promise","all","map","id","head","compId","resolveComponentId","changeVersion","toString","isRemoved","isComponentRemoved","bitmapHead","searchWithoutVersion","isHash","version","Ref","from","compact","forkedFrom","getLaneOrigin","newLane","Lane","hash","log","create","dataToPopulate","setLaneComponents","saveLane","createLaneInScope","legacyScope","currentLaneId","laneId","undefined","isLaneExported","currentLane","isValidLaneName","componentList","ComponentsList","stagedComponents","listExportPendingComponentsIds","length","join","val","test"],"sources":["create-lane.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport { ScopeMain } from '@teambit/scope';\n// import { BitIds } from '@teambit/legacy/dist/bit-id';\nimport Lane, { LaneComponent } from '@teambit/legacy/dist/scope/models/lane';\nimport { isHash } from '@teambit/component-version';\nimport { getBitCloudUser } from '@teambit/snapping';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport { Ref } from '@teambit/legacy/dist/scope/objects';\nimport { Workspace } from '@teambit/workspace';\nimport { compact } from 'lodash';\n\nconst MAX_LANE_NAME_LENGTH = 800;\n\nexport async function createLane(\n workspace: Workspace,\n laneName: string,\n scopeName: string,\n remoteLane?: Lane\n): Promise<Lane> {\n const consumer = workspace.consumer;\n const lanes = await consumer.scope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists, to switch to this lane, please use \"bit switch\" command`);\n }\n const bitCloudUser = await getBitCloudUser();\n throwForInvalidLaneName(laneName);\n await throwForStagedComponents(consumer);\n const getDataToPopulateLaneObjectIfNeeded = async (): Promise<LaneComponent[]> => {\n if (remoteLane) return remoteLane.components;\n // when branching from one lane to another, copy components from the origin lane\n // when branching from main, no need to copy anything\n const currentLaneObject = await consumer.getCurrentLaneObject();\n if (!currentLaneObject) return [];\n const laneComponents = currentLaneObject.components;\n const workspaceIds = consumer.bitMap.getAllBitIds();\n const laneComponentWithBitmapHead = await Promise.all(\n laneComponents.map(async ({ id, head }) => {\n const compId = await workspace.resolveComponentId(id.changeVersion(head.toString()));\n const isRemoved = await workspace.scope.isComponentRemoved(compId);\n if (isRemoved) return null;\n const bitmapHead = workspaceIds.searchWithoutVersion(id);\n if (bitmapHead && isHash(bitmapHead.version)) {\n return { id, head: Ref.from(bitmapHead.version as string) };\n }\n return { id, head };\n })\n );\n return compact(laneComponentWithBitmapHead);\n };\n\n const forkedFrom = await getLaneOrigin(consumer);\n const newLane = remoteLane\n ? Lane.from({\n name: laneName,\n hash: remoteLane.hash().toString(),\n log: remoteLane.log,\n scope: remoteLane.scope,\n forkedFrom,\n })\n : Lane.create(laneName, scopeName, forkedFrom, bitCloudUser);\n const dataToPopulate = await getDataToPopulateLaneObjectIfNeeded();\n newLane.setLaneComponents(dataToPopulate);\n\n await consumer.scope.lanes.saveLane(newLane);\n\n return newLane;\n}\n\nexport async function createLaneInScope(laneName: string, scope: ScopeMain): Promise<Lane> {\n const lanes = await scope.legacyScope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists`);\n }\n throwForInvalidLaneName(laneName);\n const newLane = Lane.create(laneName, scope.name);\n await scope.legacyScope.lanes.saveLane(newLane);\n return newLane;\n}\n\nasync function getLaneOrigin(consumer: Consumer): Promise<LaneId | undefined> {\n const currentLaneId = consumer.bitMap.laneId;\n if (!currentLaneId) return undefined;\n if (consumer.bitMap.isLaneExported) {\n return currentLaneId;\n }\n // current lane is new.\n const currentLane = await consumer.getCurrentLaneObject();\n return currentLane?.forkedFrom;\n}\n\nexport function throwForInvalidLaneName(laneName: string) {\n if (!isValidLaneName(laneName)) {\n throw new BitError(\n `lane \"${laneName}\" has invalid characters. lane name can only contain alphanumeric, lowercase characters, and the following [\"-\", \"_\", \"$\", \"!\"]`\n );\n }\n}\n\nexport async function throwForStagedComponents(consumer: Consumer) {\n const componentList = new ComponentsList(consumer);\n const stagedComponents = await componentList.listExportPendingComponentsIds();\n if (stagedComponents.length) {\n throw new BitError(\n `unable to switch/create a new lane, please export or reset the following components first: ${stagedComponents.join(\n ', '\n )}`\n );\n }\n}\n\nfunction isValidLaneName(val: unknown): boolean {\n if (typeof val !== 'string') return false;\n if (val.length > MAX_LANE_NAME_LENGTH) return false;\n // @todo: should we allow slash? if so, we should probably replace the lane-delimiter with something else. (maybe \":\")\n return /^[$\\-_!a-z0-9]+$/.test(val);\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_bitError","data","require","_lane","_interopRequireDefault","_componentVersion","_snapping","_componentsList","_objects","_lodash","obj","__esModule","default","MAX_LANE_NAME_LENGTH","createLane","workspace","laneName","scopeName","remoteLane","consumer","lanes","scope","listLanes","find","lane","name","BitError","bitCloudUser","getBitCloudUser","throwForInvalidLaneName","throwForStagedComponents","getDataToPopulateLaneObjectIfNeeded","components","currentLaneObject","getCurrentLaneObject","laneComponents","workspaceIds","bitMap","getAllBitIds","laneComponentWithBitmapHead","Promise","all","map","id","head","compId","resolveComponentId","changeVersion","toString","isRemoved","isComponentRemoved","bitmapHead","searchWithoutVersion","isHash","version","Ref","from","compact","forkedFrom","getLaneOrigin","newLane","Lane","hash","log","create","dataToPopulate","setLaneComponents","saveLane","createLaneInScope","legacyScope","currentLaneId","laneId","undefined","isLaneExported","currentLane","isValidLaneName","componentList","ComponentsList","stagedComponents","listExportPendingComponentsIds","length","join","val","test"],"sources":["create-lane.ts"],"sourcesContent":["import { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport { ScopeMain } from '@teambit/scope';\n// import { BitIds } from '@teambit/legacy/dist/bit-id';\nimport Lane, { LaneComponent } from '@teambit/legacy/dist/scope/models/lane';\nimport { isHash } from '@teambit/component-version';\nimport { getBitCloudUser } from '@teambit/snapping';\nimport ComponentsList from '@teambit/legacy/dist/consumer/component/components-list';\nimport { Ref } from '@teambit/legacy/dist/scope/objects';\nimport { Workspace } from '@teambit/workspace';\nimport { compact } from 'lodash';\n\nconst MAX_LANE_NAME_LENGTH = 800;\n\nexport async function createLane(\n workspace: Workspace,\n laneName: string,\n scopeName: string,\n remoteLane?: Lane\n): Promise<Lane> {\n const consumer = workspace.consumer;\n const lanes = await consumer.scope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists, to switch to this lane, please use \"bit switch\" command`);\n }\n const bitCloudUser = await getBitCloudUser();\n throwForInvalidLaneName(laneName);\n await throwForStagedComponents(consumer);\n const getDataToPopulateLaneObjectIfNeeded = async (): Promise<LaneComponent[]> => {\n if (remoteLane) return remoteLane.components;\n // when branching from one lane to another, copy components from the origin lane\n // when branching from main, no need to copy anything\n const currentLaneObject = await consumer.getCurrentLaneObject();\n if (!currentLaneObject) return [];\n const laneComponents = currentLaneObject.components;\n const workspaceIds = consumer.bitMap.getAllBitIds();\n const laneComponentWithBitmapHead = await Promise.all(\n laneComponents.map(async ({ id, head }) => {\n const compId = await workspace.resolveComponentId(id.changeVersion(head.toString()));\n const isRemoved = await workspace.scope.isComponentRemoved(compId);\n if (isRemoved) return null;\n const bitmapHead = workspaceIds.searchWithoutVersion(id);\n if (bitmapHead && isHash(bitmapHead.version)) {\n return { id, head: Ref.from(bitmapHead.version as string) };\n }\n return { id, head };\n })\n );\n return compact(laneComponentWithBitmapHead);\n };\n\n const forkedFrom = await getLaneOrigin(consumer);\n const newLane = remoteLane\n ? Lane.from({\n name: laneName,\n hash: remoteLane.hash().toString(),\n log: remoteLane.log,\n scope: remoteLane.scope,\n forkedFrom,\n })\n : Lane.create(laneName, scopeName, forkedFrom, bitCloudUser);\n const dataToPopulate = await getDataToPopulateLaneObjectIfNeeded();\n newLane.setLaneComponents(dataToPopulate);\n\n await consumer.scope.lanes.saveLane(newLane);\n\n return newLane;\n}\n\nexport async function createLaneInScope(laneName: string, scope: ScopeMain): Promise<Lane> {\n const lanes = await scope.legacyScope.listLanes();\n if (lanes.find((lane) => lane.name === laneName)) {\n throw new BitError(`lane \"${laneName}\" already exists`);\n }\n throwForInvalidLaneName(laneName);\n const newLane = Lane.create(laneName, scope.name);\n await scope.legacyScope.lanes.saveLane(newLane);\n return newLane;\n}\n\nasync function getLaneOrigin(consumer: Consumer): Promise<LaneId | undefined> {\n const currentLaneId = consumer.bitMap.laneId;\n if (!currentLaneId) return undefined;\n if (consumer.bitMap.isLaneExported) {\n return currentLaneId;\n }\n // current lane is new.\n const currentLane = await consumer.getCurrentLaneObject();\n return currentLane?.forkedFrom;\n}\n\nexport function throwForInvalidLaneName(laneName: string) {\n if (!isValidLaneName(laneName)) {\n throw new BitError(\n `lane \"${laneName}\" has invalid characters. lane name can only contain alphanumeric, lowercase characters, and the following [\"-\", \"_\", \"$\", \"!\"]`\n );\n }\n}\n\nexport async function throwForStagedComponents(consumer: Consumer) {\n const componentList = new ComponentsList(consumer);\n const stagedComponents = await componentList.listExportPendingComponentsIds();\n if (stagedComponents.length) {\n throw new BitError(\n `unable to switch/create a new lane, please export or reset the following components first: ${stagedComponents.join(\n ', '\n )}`\n );\n }\n}\n\nfunction isValidLaneName(val: unknown): boolean {\n if (typeof val !== 'string') return false;\n if (val.length > MAX_LANE_NAME_LENGTH) return false;\n // @todo: should we allow slash? if so, we should probably replace the lane-delimiter with something else. (maybe \":\")\n return /^[$\\-_!a-z0-9]+$/.test(val);\n}\n"],"mappings":"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"}
package/dist/lane.cmd.js CHANGED
@@ -1,19 +1,9 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- require("core-js/modules/es.array.iterator.js");
5
- require("core-js/modules/es.promise.js");
6
3
  Object.defineProperty(exports, "__esModule", {
7
4
  value: true
8
5
  });
9
6
  exports.LaneShowCmd = exports.LaneRenameCmd = exports.LaneRemoveReadmeCmd = exports.LaneRemoveCompCmd = exports.LaneRemoveCmd = exports.LaneListCmd = exports.LaneImportCmd = exports.LaneCreateCmd = exports.LaneCmd = exports.LaneChangeScopeCmd = exports.LaneAliasCmd = exports.LaneAddReadmeCmd = void 0;
10
- function _defineProperty2() {
11
- const data = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
12
- _defineProperty2 = function () {
13
- return data;
14
- };
15
- return data;
16
- }
17
7
  function _chalk() {
18
8
  const data = _interopRequireDefault(require("chalk"));
19
9
  _chalk = function () {
@@ -56,21 +46,23 @@ function _constants() {
56
46
  };
57
47
  return data;
58
48
  }
59
- // eslint-disable-next-line max-classes-per-file
60
-
49
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
50
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
51
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
52
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } // eslint-disable-next-line max-classes-per-file
61
53
  class LaneListCmd {
62
54
  constructor(lanes, workspace, scope) {
63
55
  this.lanes = lanes;
64
56
  this.workspace = workspace;
65
57
  this.scope = scope;
66
- (0, _defineProperty2().default)(this, "name", 'list');
67
- (0, _defineProperty2().default)(this, "description", `list local lanes`);
68
- (0, _defineProperty2().default)(this, "alias", '');
69
- (0, _defineProperty2().default)(this, "options", [['d', 'details', 'show more details on the state of each component in each lane'], ['j', 'json', "show lanes' details in a json format"], ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'], ['', 'merged', 'list only merged lanes'], ['', 'not-merged', "list only lanes that haven't been merged"]]);
70
- (0, _defineProperty2().default)(this, "loader", true);
71
- (0, _defineProperty2().default)(this, "migration", true);
72
- (0, _defineProperty2().default)(this, "remoteOp", true);
73
- (0, _defineProperty2().default)(this, "skipWorkspace", true);
58
+ _defineProperty(this, "name", 'list');
59
+ _defineProperty(this, "description", `list local lanes`);
60
+ _defineProperty(this, "alias", '');
61
+ _defineProperty(this, "options", [['d', 'details', 'show more details on the state of each component in each lane'], ['j', 'json', "show lanes' details in a json format"], ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'], ['', 'merged', 'list only merged lanes'], ['', 'not-merged', "list only lanes that haven't been merged"]]);
62
+ _defineProperty(this, "loader", true);
63
+ _defineProperty(this, "migration", true);
64
+ _defineProperty(this, "remoteOp", true);
65
+ _defineProperty(this, "skipWorkspace", true);
74
66
  }
75
67
  async report(args, laneOptions) {
76
68
  const {
@@ -165,14 +157,14 @@ class LaneShowCmd {
165
157
  this.lanes = lanes;
166
158
  this.workspace = workspace;
167
159
  this.scope = scope;
168
- (0, _defineProperty2().default)(this, "name", 'show [lane-name]');
169
- (0, _defineProperty2().default)(this, "description", `show lane details. if no lane specified, show the current lane`);
170
- (0, _defineProperty2().default)(this, "alias", '');
171
- (0, _defineProperty2().default)(this, "options", [['j', 'json', 'show the lane details in json format'], ['r', 'remote', 'show details of the remote head of the provided lane']]);
172
- (0, _defineProperty2().default)(this, "loader", true);
173
- (0, _defineProperty2().default)(this, "migration", true);
174
- (0, _defineProperty2().default)(this, "remoteOp", true);
175
- (0, _defineProperty2().default)(this, "skipWorkspace", true);
160
+ _defineProperty(this, "name", 'show [lane-name]');
161
+ _defineProperty(this, "description", `show lane details. if no lane specified, show the current lane`);
162
+ _defineProperty(this, "alias", '');
163
+ _defineProperty(this, "options", [['j', 'json', 'show the lane details in json format'], ['r', 'remote', 'show details of the remote head of the provided lane']]);
164
+ _defineProperty(this, "loader", true);
165
+ _defineProperty(this, "migration", true);
166
+ _defineProperty(this, "remoteOp", true);
167
+ _defineProperty(this, "skipWorkspace", true);
176
168
  }
177
169
  async report([name], laneOptions) {
178
170
  var _onlyLane$log, _onlyLane$log2, _onlyLane$log3;
@@ -211,18 +203,18 @@ exports.LaneShowCmd = LaneShowCmd;
211
203
  class LaneCreateCmd {
212
204
  constructor(lanes) {
213
205
  this.lanes = lanes;
214
- (0, _defineProperty2().default)(this, "name", 'create <lane-name>');
215
- (0, _defineProperty2().default)(this, "arguments", [{
206
+ _defineProperty(this, "name", 'create <lane-name>');
207
+ _defineProperty(this, "arguments", [{
216
208
  name: 'lane-name',
217
209
  description: 'the name for the new lane'
218
210
  }]);
219
- (0, _defineProperty2().default)(this, "description", `creates a new lane and switches to it`);
220
- (0, _defineProperty2().default)(this, "extendedDescription", `a lane created from main (default-lane) is empty until components are snapped.
211
+ _defineProperty(this, "description", `creates a new lane and switches to it`);
212
+ _defineProperty(this, "extendedDescription", `a lane created from main (default-lane) is empty until components are snapped.
221
213
  a lane created from another lane contains all the components of the original lane.`);
222
- (0, _defineProperty2().default)(this, "alias", '');
223
- (0, _defineProperty2().default)(this, "options", [['s', 'scope <scope-name>', 'remote scope to which this lane will be exported, default to the workspace.json\'s defaultScope (can be changed up to first export of the lane with "bit lane change-scope")'], ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'], ['', 'alias <name>', 'a local alias to refer to this lane, defaults to the `<lane-name>` (can be added later with "bit lane alias")'], ['', 'fork-lane-new-scope', 'create the new lane in a different scope than its parent lane (if created from another lane)']]);
224
- (0, _defineProperty2().default)(this, "loader", true);
225
- (0, _defineProperty2().default)(this, "migration", true);
214
+ _defineProperty(this, "alias", '');
215
+ _defineProperty(this, "options", [['s', 'scope <scope-name>', 'remote scope to which this lane will be exported, default to the workspace.json\'s defaultScope (can be changed up to first export of the lane with "bit lane change-scope")'], ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'], ['', 'alias <name>', 'a local alias to refer to this lane, defaults to the `<lane-name>` (can be added later with "bit lane alias")'], ['', 'fork-lane-new-scope', 'create the new lane in a different scope than its parent lane (if created from another lane)']]);
216
+ _defineProperty(this, "loader", true);
217
+ _defineProperty(this, "migration", true);
226
218
  }
227
219
  async report([name], createLaneOptions) {
228
220
  const currentLane = await this.lanes.getCurrentLane();
@@ -240,14 +232,14 @@ exports.LaneCreateCmd = LaneCreateCmd;
240
232
  class LaneAliasCmd {
241
233
  constructor(lanes) {
242
234
  this.lanes = lanes;
243
- (0, _defineProperty2().default)(this, "name", 'alias <lane-name> <alias>');
244
- (0, _defineProperty2().default)(this, "description", 'adds an alias to a lane');
245
- (0, _defineProperty2().default)(this, "extendedDescription", `an alias is a name that can be used locally to refer to a lane. it is saved locally and never reaches the remote.
235
+ _defineProperty(this, "name", 'alias <lane-name> <alias>');
236
+ _defineProperty(this, "description", 'adds an alias to a lane');
237
+ _defineProperty(this, "extendedDescription", `an alias is a name that can be used locally to refer to a lane. it is saved locally and never reaches the remote.
246
238
  it is useful e.g. when having multiple lanes with the same name, but with different remote scopes.`);
247
- (0, _defineProperty2().default)(this, "alias", '');
248
- (0, _defineProperty2().default)(this, "options", []);
249
- (0, _defineProperty2().default)(this, "loader", true);
250
- (0, _defineProperty2().default)(this, "migration", true);
239
+ _defineProperty(this, "alias", '');
240
+ _defineProperty(this, "options", []);
241
+ _defineProperty(this, "loader", true);
242
+ _defineProperty(this, "migration", true);
251
243
  }
252
244
  async report([laneName, alias]) {
253
245
  const {
@@ -260,13 +252,13 @@ exports.LaneAliasCmd = LaneAliasCmd;
260
252
  class LaneChangeScopeCmd {
261
253
  constructor(lanes) {
262
254
  this.lanes = lanes;
263
- (0, _defineProperty2().default)(this, "name", 'change-scope <remote-scope-name>');
264
- (0, _defineProperty2().default)(this, "description", `changes the remote scope of a lane`);
265
- (0, _defineProperty2().default)(this, "extendedDescription", 'NOTE: available only before the lane is exported to the remote');
266
- (0, _defineProperty2().default)(this, "alias", '');
267
- (0, _defineProperty2().default)(this, "options", [['l', 'lane-name <lane-name>', 'the name of the lane to change its remote scope. if not specified, the current lane is used']]);
268
- (0, _defineProperty2().default)(this, "loader", true);
269
- (0, _defineProperty2().default)(this, "migration", true);
255
+ _defineProperty(this, "name", 'change-scope <remote-scope-name>');
256
+ _defineProperty(this, "description", `changes the remote scope of a lane`);
257
+ _defineProperty(this, "extendedDescription", 'NOTE: available only before the lane is exported to the remote');
258
+ _defineProperty(this, "alias", '');
259
+ _defineProperty(this, "options", [['l', 'lane-name <lane-name>', 'the name of the lane to change its remote scope. if not specified, the current lane is used']]);
260
+ _defineProperty(this, "loader", true);
261
+ _defineProperty(this, "migration", true);
270
262
  }
271
263
  async report([remoteScope], {
272
264
  laneName
@@ -282,12 +274,12 @@ exports.LaneChangeScopeCmd = LaneChangeScopeCmd;
282
274
  class LaneRenameCmd {
283
275
  constructor(lanes) {
284
276
  this.lanes = lanes;
285
- (0, _defineProperty2().default)(this, "name", 'rename <new-name>');
286
- (0, _defineProperty2().default)(this, "description", `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`);
287
- (0, _defineProperty2().default)(this, "alias", '');
288
- (0, _defineProperty2().default)(this, "options", [['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used']]);
289
- (0, _defineProperty2().default)(this, "loader", true);
290
- (0, _defineProperty2().default)(this, "migration", true);
277
+ _defineProperty(this, "name", 'rename <new-name>');
278
+ _defineProperty(this, "description", `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`);
279
+ _defineProperty(this, "alias", '');
280
+ _defineProperty(this, "options", [['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used']]);
281
+ _defineProperty(this, "loader", true);
282
+ _defineProperty(this, "migration", true);
291
283
  }
292
284
  async report([newName], {
293
285
  laneName
@@ -305,17 +297,17 @@ exports.LaneRenameCmd = LaneRenameCmd;
305
297
  class LaneRemoveCmd {
306
298
  constructor(lanes) {
307
299
  this.lanes = lanes;
308
- (0, _defineProperty2().default)(this, "name", 'remove <lanes...>');
309
- (0, _defineProperty2().default)(this, "arguments", [{
300
+ _defineProperty(this, "name", 'remove <lanes...>');
301
+ _defineProperty(this, "arguments", [{
310
302
  name: 'lanes...',
311
303
  description: 'A list of lane names, separated by spaces'
312
304
  }]);
313
- (0, _defineProperty2().default)(this, "description", `remove or delete lanes`);
314
- (0, _defineProperty2().default)(this, "group", 'collaborate');
315
- (0, _defineProperty2().default)(this, "alias", '');
316
- (0, _defineProperty2().default)(this, "options", [['r', 'remote', 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required'], ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'], ['s', 'silent', 'skip confirmation']]);
317
- (0, _defineProperty2().default)(this, "loader", true);
318
- (0, _defineProperty2().default)(this, "migration", true);
305
+ _defineProperty(this, "description", `remove or delete lanes`);
306
+ _defineProperty(this, "group", 'collaborate');
307
+ _defineProperty(this, "alias", '');
308
+ _defineProperty(this, "options", [['r', 'remote', 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required'], ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'], ['s', 'silent', 'skip confirmation']]);
309
+ _defineProperty(this, "loader", true);
310
+ _defineProperty(this, "migration", true);
319
311
  }
320
312
  async report([names], {
321
313
  remote = false,
@@ -341,17 +333,17 @@ class LaneRemoveCompCmd {
341
333
  constructor(workspace, lanes) {
342
334
  this.workspace = workspace;
343
335
  this.lanes = lanes;
344
- (0, _defineProperty2().default)(this, "name", 'remove-comp <component-pattern>');
345
- (0, _defineProperty2().default)(this, "arguments", [{
336
+ _defineProperty(this, "name", 'remove-comp <component-pattern>');
337
+ _defineProperty(this, "arguments", [{
346
338
  name: 'component-pattern',
347
339
  description: _constants().COMPONENT_PATTERN_HELP
348
340
  }]);
349
- (0, _defineProperty2().default)(this, "description", `DEPRECATED. remove components when on a lane`);
350
- (0, _defineProperty2().default)(this, "group", 'collaborate');
351
- (0, _defineProperty2().default)(this, "alias", 'rc');
352
- (0, _defineProperty2().default)(this, "options", [['', 'workspace-only', 'do not mark the components as removed from the lane. instead, remove them from the workspace only'], ['', 'update-main', 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main']]);
353
- (0, _defineProperty2().default)(this, "loader", true);
354
- (0, _defineProperty2().default)(this, "migration", true);
341
+ _defineProperty(this, "description", `DEPRECATED. remove components when on a lane`);
342
+ _defineProperty(this, "group", 'collaborate');
343
+ _defineProperty(this, "alias", 'rc');
344
+ _defineProperty(this, "options", [['', 'workspace-only', 'do not mark the components as removed from the lane. instead, remove them from the workspace only'], ['', 'update-main', 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main']]);
345
+ _defineProperty(this, "loader", true);
346
+ _defineProperty(this, "migration", true);
355
347
  }
356
348
  async report() {
357
349
  throw new (_bitError().BitError)(`bit lane remove-comp has been removed. please use "bit remove" or "bit delete" instead`);
@@ -361,16 +353,16 @@ exports.LaneRemoveCompCmd = LaneRemoveCompCmd;
361
353
  class LaneImportCmd {
362
354
  constructor(switchCmd) {
363
355
  this.switchCmd = switchCmd;
364
- (0, _defineProperty2().default)(this, "name", 'import <lane>');
365
- (0, _defineProperty2().default)(this, "description", `import a remote lane to your workspace and switch to that lane`);
366
- (0, _defineProperty2().default)(this, "arguments", [{
356
+ _defineProperty(this, "name", 'import <lane>');
357
+ _defineProperty(this, "description", `import a remote lane to your workspace and switch to that lane`);
358
+ _defineProperty(this, "arguments", [{
367
359
  name: 'lane',
368
360
  description: 'the remote lane name'
369
361
  }]);
370
- (0, _defineProperty2().default)(this, "alias", '');
371
- (0, _defineProperty2().default)(this, "options", [['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'], ['p', 'pattern <component-pattern>', 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty']]);
372
- (0, _defineProperty2().default)(this, "loader", true);
373
- (0, _defineProperty2().default)(this, "migration", true);
362
+ _defineProperty(this, "alias", '');
363
+ _defineProperty(this, "options", [['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'], ['p', 'pattern <component-pattern>', 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty']]);
364
+ _defineProperty(this, "loader", true);
365
+ _defineProperty(this, "migration", true);
374
366
  }
375
367
  async report([lane], {
376
368
  skipDependencyInstallation = false,
@@ -389,17 +381,17 @@ class LaneCmd {
389
381
  this.lanes = lanes;
390
382
  this.workspace = workspace;
391
383
  this.scope = scope;
392
- (0, _defineProperty2().default)(this, "name", 'lane [sub-command]');
393
- (0, _defineProperty2().default)(this, "description", 'manage lanes - if no sub-command is used, runs "bit lane list"');
394
- (0, _defineProperty2().default)(this, "alias", 'l');
395
- (0, _defineProperty2().default)(this, "options", [['d', 'details', 'show more details on the state of each component in each lane'], ['j', 'json', 'show lanes details in json format'], ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'], ['', 'merged', 'list only merged lanes'], ['', 'not-merged', "list only lanes that haven't been merged"]]);
396
- (0, _defineProperty2().default)(this, "loader", true);
397
- (0, _defineProperty2().default)(this, "migration", true);
398
- (0, _defineProperty2().default)(this, "group", 'collaborate');
399
- (0, _defineProperty2().default)(this, "remoteOp", true);
400
- (0, _defineProperty2().default)(this, "skipWorkspace", true);
401
- (0, _defineProperty2().default)(this, "helpUrl", 'reference/components/lanes');
402
- (0, _defineProperty2().default)(this, "commands", []);
384
+ _defineProperty(this, "name", 'lane [sub-command]');
385
+ _defineProperty(this, "description", 'manage lanes - if no sub-command is used, runs "bit lane list"');
386
+ _defineProperty(this, "alias", 'l');
387
+ _defineProperty(this, "options", [['d', 'details', 'show more details on the state of each component in each lane'], ['j', 'json', 'show lanes details in json format'], ['r', 'remote <remote-scope-name>', 'show all remote lanes from the specified scope'], ['', 'merged', 'list only merged lanes'], ['', 'not-merged', "list only lanes that haven't been merged"]]);
388
+ _defineProperty(this, "loader", true);
389
+ _defineProperty(this, "migration", true);
390
+ _defineProperty(this, "group", 'collaborate');
391
+ _defineProperty(this, "remoteOp", true);
392
+ _defineProperty(this, "skipWorkspace", true);
393
+ _defineProperty(this, "helpUrl", 'reference/components/lanes');
394
+ _defineProperty(this, "commands", []);
403
395
  }
404
396
  async report([name], laneOptions) {
405
397
  return new LaneListCmd(this.lanes, this.workspace, this.scope).report([name], laneOptions);
@@ -409,11 +401,11 @@ exports.LaneCmd = LaneCmd;
409
401
  class LaneRemoveReadmeCmd {
410
402
  constructor(lanes) {
411
403
  this.lanes = lanes;
412
- (0, _defineProperty2().default)(this, "name", 'remove-readme [laneName]');
413
- (0, _defineProperty2().default)(this, "description", 'EXPERIMENTAL. remove lane readme component');
414
- (0, _defineProperty2().default)(this, "options", []);
415
- (0, _defineProperty2().default)(this, "loader", true);
416
- (0, _defineProperty2().default)(this, "skipWorkspace", false);
404
+ _defineProperty(this, "name", 'remove-readme [laneName]');
405
+ _defineProperty(this, "description", 'EXPERIMENTAL. remove lane readme component');
406
+ _defineProperty(this, "options", []);
407
+ _defineProperty(this, "loader", true);
408
+ _defineProperty(this, "skipWorkspace", false);
417
409
  }
418
410
  async report([laneName]) {
419
411
  const {
@@ -430,18 +422,18 @@ exports.LaneRemoveReadmeCmd = LaneRemoveReadmeCmd;
430
422
  class LaneAddReadmeCmd {
431
423
  constructor(lanes) {
432
424
  this.lanes = lanes;
433
- (0, _defineProperty2().default)(this, "name", 'add-readme <component-name> [lane-name]');
434
- (0, _defineProperty2().default)(this, "description", 'EXPERIMENTAL. sets an existing component as the readme of a lane');
435
- (0, _defineProperty2().default)(this, "arguments", [{
425
+ _defineProperty(this, "name", 'add-readme <component-name> [lane-name]');
426
+ _defineProperty(this, "description", 'EXPERIMENTAL. sets an existing component as the readme of a lane');
427
+ _defineProperty(this, "arguments", [{
436
428
  name: 'component-id',
437
429
  description: "the component name or id of the component to use as the lane's readme"
438
430
  }, {
439
431
  name: 'lane-name',
440
432
  description: 'the lane to attach the readme to (defaults to the current lane)'
441
433
  }]);
442
- (0, _defineProperty2().default)(this, "options", []);
443
- (0, _defineProperty2().default)(this, "loader", true);
444
- (0, _defineProperty2().default)(this, "skipWorkspace", false);
434
+ _defineProperty(this, "options", []);
435
+ _defineProperty(this, "loader", true);
436
+ _defineProperty(this, "skipWorkspace", false);
445
437
  }
446
438
  async report([componentId, laneName]) {
447
439
  const {
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yn","_laneId","_bitError","_prompts","_constants","LaneListCmd","constructor","lanes","workspace","scope","_defineProperty2","default","report","args","laneOptions","details","remote","merged","notMerged","laneIdStr","laneId","alias","isDefault","name","toString","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","join","unmergedLanes","currentLane","getCurrentLaneId","getDefaultLaneId","laneDataOfCurrentLane","find","isEqual","id","undefined","currentAlias","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","currentLaneComponents","outputComponents","components","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","getCurrentLaneNameOrAlias","exports","LaneShowCmd","_onlyLane$log","_onlyLane$log2","_onlyLane$log3","Error","getCurrentLaneName","DEFAULT_LANE","parseLaneId","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","LaneCreateCmd","description","createLaneOptions","getCurrentLane","remoteScope","result","createLane","remoteScopeOrDefaultScope","yellow","remoteScopeOutput","LaneAliasCmd","laneName","aliasLane","LaneChangeScopeCmd","remoteScopeBefore","localName","changeScope","LaneRenameCmd","newName","exported","exportErr","currentName","rename","exportedStr","message","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","BitError","laneResults","removeLanes","LaneRemoveCompCmd","COMPONENT_PATTERN_HELP","LaneImportCmd","switchCmd","lane","skipDependencyInstallation","pattern","getAll","LaneCmd","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","head","component"],"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 { DEFAULT_LANE, LaneId } from '@teambit/lane-id';\nimport { Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\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 local 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 all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = 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 const laneIdStr = (laneId: LaneId, alias?: string | null) => {\n if (laneId.isDefault()) return laneId.name;\n if (alias) return `${laneId.toString()} (${alias})`;\n return laneId.toString();\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.getCurrentLaneId() || this.lanes.getDefaultLaneId();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => currentLane.isEqual(l.id)) : undefined;\n const currentAlias = laneDataOfCurrentLane ? laneDataOfCurrentLane.alias : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = `current lane - ${chalk.green.green(laneIdStr(currentLane, currentAlias))}`;\n currentLaneStr += currentLaneReadmeComponentStr;\n\n if (details) {\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => !currentLane.isEqual(l.id))\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneIdStr(laneData.id, laneData.alias))}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneIdStr(laneData.id, laneData.alias))} (${\n laneData.components.length\n } 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 local scope 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.getCurrentLaneNameOrAlias();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show [lane-name]';\n description = `show lane details. if no lane specified, show the current lane`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote', 'show details of the remote head of the provided lane'],\n ] as CommandOptions;\n loader = 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 if (!name && remote) {\n throw new Error('remote flag is not supported without lane name');\n }\n if (!name) {\n name = this.lanes.getCurrentLaneName() || DEFAULT_LANE;\n }\n\n const laneId = await this.lanes.parseLaneId(name);\n\n const lanes = await this.lanes.getLanes({\n name: laneId.name,\n remote: remote ? laneId.scope : undefined,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(onlyLane.id.toString())}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date\n ? `created: ${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n`\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\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 contains all the components of the original lane.`;\n alias = '';\n options = [\n [\n 's',\n 'scope <scope-name>',\n 'remote scope to which this lane will be exported, default to the workspace.json\\'s defaultScope (can be changed up to first export of the lane with \"bit lane change-scope\")',\n ],\n ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'],\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 [\n '',\n 'fork-lane-new-scope',\n 'create the new lane in a different scope than its parent lane (if created from another lane)',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions & { remoteScope?: string }): Promise<string> {\n const currentLane = await this.lanes.getCurrentLane();\n if (createLaneOptions.remoteScope) createLaneOptions.scope = createLaneOptions.remoteScope;\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.scope\n ? `the remote scope ${chalk.bold(createLaneOptions.scope)}`\n : `the default-scope ${chalk.bold(\n result.laneId.scope\n )}. you can change the lane's scope, before it is exported, with the \"bit lane change-scope\" command`;\n const title = chalk.green(\n `successfully added and checked out to the new lane ${chalk.bold(result.alias || result.laneId.name)}\n ${currentLane !== null ? chalk.yellow(`\\nnote - your new lane will be based on lane ${currentLane.name}`) : ''}\n `\n );\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 locally to refer to a lane. it is saved locally and never reaches the remote.\nit is useful e.g. when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = 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)} for lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n extendedDescription = 'NOTE: available only before the lane is exported to the remote';\n alias = '';\n options = [\n [\n 'l',\n 'lane-name <lane-name>',\n 'the name of the lane to change its remote scope. if not specified, the current lane is used',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([remoteScope]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { remoteScopeBefore, localName } = await this.lanes.changeScope(remoteScope, laneName);\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 <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`;\n alias = '';\n options = [\n ['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used'],\n ] as CommandOptions;\n loader = true;\n migration = true;\n constructor(private lanes: LanesMain) {}\n\n async report([newName]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { exported, exportErr, currentName } = await this.lanes.rename(newName, laneName);\n const exportedStr = exported\n ? `and have been exported successfully to the remote`\n : `however failed exporting the renamed lane to the remote, due to an error: ${exportErr?.message || 'unknown'}`;\n return `the lane ${chalk.bold(currentName)}'s name has been changed to ${chalk.bold(newName)}, ${exportedStr}`;\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 or delete lanes`;\n group = 'collaborate';\n alias = '';\n options = [\n [\n 'r',\n 'remote',\n 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required',\n ],\n ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'],\n ['s', 'silent', 'skip confirmation'],\n ] as CommandOptions;\n loader = 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 cancelled');\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 type RemoveCompsOpts = { workspaceOnly?: boolean; updateMain?: boolean };\n\nexport class LaneRemoveCompCmd implements Command {\n name = 'remove-comp <component-pattern>';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = `DEPRECATED. remove components when on a lane`;\n group = 'collaborate';\n alias = 'rc';\n options = [\n [\n '',\n 'workspace-only',\n 'do not mark the components as removed from the lane. instead, remove them from the workspace only',\n ],\n [\n '',\n 'update-main',\n 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private workspace: Workspace, private lanes: LanesMain) {}\n\n async report(): Promise<string> {\n throw new BitError(`bit lane remove-comp has been removed. please use \"bit remove\" or \"bit delete\" instead`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace and switch to that lane`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false, pattern }: { skipDependencyInstallation: boolean; pattern?: string }\n ): Promise<string> {\n return this.switchCmd.report([lane], { getAll: true, skipDependencyInstallation, pattern });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [sub-command]';\n description = 'manage lanes - if no sub-command is used, runs \"bit lane list\"';\n alias = 'l';\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 <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n migration = true;\n group = 'collaborate';\n remoteOp = true;\n skipWorkspace = true;\n helpUrl = 'reference/components/lanes';\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\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 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 ${\n laneName || this.lanes.getCurrentLaneName()\n }`\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. sets an existing component as the readme of 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 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.getCurrentLaneName()\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.getCurrentLaneName()\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"],"mappings":"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"}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_yn","_laneId","_bitError","_prompts","_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","LaneListCmd","constructor","lanes","workspace","scope","report","args","laneOptions","details","remote","merged","notMerged","laneIdStr","laneId","alias","isDefault","name","toString","getLanes","showDefaultLane","mergedLanes","filter","l","isMerged","length","chalk","green","map","m","join","unmergedLanes","currentLane","getCurrentLaneId","getDefaultLaneId","laneDataOfCurrentLane","find","isEqual","id","currentAlias","currentLaneReadmeComponentStr","outputReadmeComponent","readmeComponent","currentLaneStr","currentLaneComponents","outputComponents","components","availableLanes","laneData","readmeComponentStr","laneTitle","bold","concat","outputFooter","footer","outputCurrentLane","outputAvailableLanes","json","getCurrentLaneNameOrAlias","exports","LaneShowCmd","_onlyLane$log","_onlyLane$log2","_onlyLane$log3","Error","getCurrentLaneName","DEFAULT_LANE","parseLaneId","onlyLane","title","author","log","username","email","date","Date","parseInt","toLocaleString","LaneCreateCmd","description","createLaneOptions","getCurrentLane","remoteScope","result","createLane","remoteScopeOrDefaultScope","yellow","remoteScopeOutput","LaneAliasCmd","laneName","aliasLane","LaneChangeScopeCmd","remoteScopeBefore","localName","changeScope","LaneRenameCmd","newName","exported","exportErr","currentName","rename","exportedStr","message","LaneRemoveCmd","names","force","silent","removePromptResult","approveOperation","yn","shouldProceed","BitError","laneResults","removeLanes","LaneRemoveCompCmd","COMPONENT_PATTERN_HELP","LaneImportCmd","switchCmd","lane","skipDependencyInstallation","pattern","getAll","LaneCmd","LaneRemoveReadmeCmd","removeLaneReadme","red","LaneAddReadmeCmd","componentId","addLaneReadme","componentsTitle","componentsStr","c","head","component"],"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 { DEFAULT_LANE, LaneId } from '@teambit/lane-id';\nimport { Workspace } from '@teambit/workspace';\nimport { Command, CommandOptions } from '@teambit/cli';\nimport { LaneData } from '@teambit/legacy/dist/scope/lanes/lanes';\nimport { BitError } from '@teambit/bit-error';\nimport { approveOperation } from '@teambit/legacy/dist/prompts';\nimport { COMPONENT_PATTERN_HELP } from '@teambit/legacy/dist/constants';\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 local 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 all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = 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 const laneIdStr = (laneId: LaneId, alias?: string | null) => {\n if (laneId.isDefault()) return laneId.name;\n if (alias) return `${laneId.toString()} (${alias})`;\n return laneId.toString();\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.getCurrentLaneId() || this.lanes.getDefaultLaneId();\n const laneDataOfCurrentLane = currentLane ? lanes.find((l) => currentLane.isEqual(l.id)) : undefined;\n const currentAlias = laneDataOfCurrentLane ? laneDataOfCurrentLane.alias : undefined;\n const currentLaneReadmeComponentStr = outputReadmeComponent(laneDataOfCurrentLane?.readmeComponent);\n let currentLaneStr = `current lane - ${chalk.green.green(laneIdStr(currentLane, currentAlias))}`;\n currentLaneStr += currentLaneReadmeComponentStr;\n\n if (details) {\n const currentLaneComponents = laneDataOfCurrentLane ? outputComponents(laneDataOfCurrentLane.components) : '';\n if (currentLaneStr) {\n currentLaneStr += `\\n${currentLaneComponents}`;\n }\n }\n\n const availableLanes = lanes\n .filter((l) => !currentLane.isEqual(l.id))\n .map((laneData) => {\n const readmeComponentStr = outputReadmeComponent(laneData.readmeComponent);\n if (details) {\n const laneTitle = `> ${chalk.bold(laneIdStr(laneData.id, laneData.alias))}\\n`;\n const components = outputComponents(laneData.components);\n return laneTitle + readmeComponentStr.concat('\\n') + components;\n }\n return ` > ${chalk.green(laneIdStr(laneData.id, laneData.alias))} (${\n laneData.components.length\n } 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 local scope 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.getCurrentLaneNameOrAlias();\n return { lanes, currentLane };\n }\n}\n\nexport class LaneShowCmd implements Command {\n name = 'show [lane-name]';\n description = `show lane details. if no lane specified, show the current lane`;\n alias = '';\n options = [\n ['j', 'json', 'show the lane details in json format'],\n ['r', 'remote', 'show details of the remote head of the provided lane'],\n ] as CommandOptions;\n loader = 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 if (!name && remote) {\n throw new Error('remote flag is not supported without lane name');\n }\n if (!name) {\n name = this.lanes.getCurrentLaneName() || DEFAULT_LANE;\n }\n\n const laneId = await this.lanes.parseLaneId(name);\n\n const lanes = await this.lanes.getLanes({\n name: laneId.name,\n remote: remote ? laneId.scope : undefined,\n });\n\n const onlyLane = lanes[0];\n const title = `showing information for ${chalk.bold(onlyLane.id.toString())}\\n`;\n const author = `author: ${onlyLane.log?.username || 'N/A'} <${onlyLane.log?.email || 'N/A'}>\\n`;\n const date = onlyLane.log?.date\n ? `created: ${new Date(parseInt(onlyLane.log.date)).toLocaleString()}\\n`\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\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 contains all the components of the original lane.`;\n alias = '';\n options = [\n [\n 's',\n 'scope <scope-name>',\n 'remote scope to which this lane will be exported, default to the workspace.json\\'s defaultScope (can be changed up to first export of the lane with \"bit lane change-scope\")',\n ],\n ['', 'remote-scope <scope-name>', 'DEPRECATED. use --scope'],\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 [\n '',\n 'fork-lane-new-scope',\n 'create the new lane in a different scope than its parent lane (if created from another lane)',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([name]: [string], createLaneOptions: CreateLaneOptions & { remoteScope?: string }): Promise<string> {\n const currentLane = await this.lanes.getCurrentLane();\n if (createLaneOptions.remoteScope) createLaneOptions.scope = createLaneOptions.remoteScope;\n const result = await this.lanes.createLane(name, createLaneOptions);\n const remoteScopeOrDefaultScope = createLaneOptions.scope\n ? `the remote scope ${chalk.bold(createLaneOptions.scope)}`\n : `the default-scope ${chalk.bold(\n result.laneId.scope\n )}. you can change the lane's scope, before it is exported, with the \"bit lane change-scope\" command`;\n const title = chalk.green(\n `successfully added and checked out to the new lane ${chalk.bold(result.alias || result.laneId.name)}\n ${currentLane !== null ? chalk.yellow(`\\nnote - your new lane will be based on lane ${currentLane.name}`) : ''}\n `\n );\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 locally to refer to a lane. it is saved locally and never reaches the remote.\nit is useful e.g. when having multiple lanes with the same name, but with different remote scopes.`;\n alias = '';\n options = [] as CommandOptions;\n loader = 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)} for lane ${chalk.bold(laneId.toString())}`;\n }\n}\n\nexport class LaneChangeScopeCmd implements Command {\n name = 'change-scope <remote-scope-name>';\n description = `changes the remote scope of a lane`;\n extendedDescription = 'NOTE: available only before the lane is exported to the remote';\n alias = '';\n options = [\n [\n 'l',\n 'lane-name <lane-name>',\n 'the name of the lane to change its remote scope. if not specified, the current lane is used',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private lanes: LanesMain) {}\n\n async report([remoteScope]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { remoteScopeBefore, localName } = await this.lanes.changeScope(remoteScope, laneName);\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 <new-name>';\n description = `EXPERIMENTAL. change the lane-name locally and on the remote (if exported)`;\n alias = '';\n options = [\n ['l', 'lane-name <lane-name>', 'the name of the lane to rename. if not specified, the current lane is used'],\n ] as CommandOptions;\n loader = true;\n migration = true;\n constructor(private lanes: LanesMain) {}\n\n async report([newName]: [string], { laneName }: { laneName?: string }): Promise<string> {\n const { exported, exportErr, currentName } = await this.lanes.rename(newName, laneName);\n const exportedStr = exported\n ? `and have been exported successfully to the remote`\n : `however failed exporting the renamed lane to the remote, due to an error: ${exportErr?.message || 'unknown'}`;\n return `the lane ${chalk.bold(currentName)}'s name has been changed to ${chalk.bold(newName)}, ${exportedStr}`;\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 or delete lanes`;\n group = 'collaborate';\n alias = '';\n options = [\n [\n 'r',\n 'remote',\n 'delete a remote lane. use remote/lane-id syntax e.g. bit lane remove owner.org/my-lane --remote. Delete is immediate, no export required',\n ],\n ['f', 'force', 'removes/deletes the lane even when the lane is not yet merged to main'],\n ['s', 'silent', 'skip confirmation'],\n ] as CommandOptions;\n loader = 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 cancelled');\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 type RemoveCompsOpts = { workspaceOnly?: boolean; updateMain?: boolean };\n\nexport class LaneRemoveCompCmd implements Command {\n name = 'remove-comp <component-pattern>';\n arguments = [\n {\n name: 'component-pattern',\n description: COMPONENT_PATTERN_HELP,\n },\n ];\n description = `DEPRECATED. remove components when on a lane`;\n group = 'collaborate';\n alias = 'rc';\n options = [\n [\n '',\n 'workspace-only',\n 'do not mark the components as removed from the lane. instead, remove them from the workspace only',\n ],\n [\n '',\n 'update-main',\n 'EXPERIMENTAL. remove, i.e. delete, component/s on the main lane after merging this lane into main',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private workspace: Workspace, private lanes: LanesMain) {}\n\n async report(): Promise<string> {\n throw new BitError(`bit lane remove-comp has been removed. please use \"bit remove\" or \"bit delete\" instead`);\n }\n}\n\nexport class LaneImportCmd implements Command {\n name = 'import <lane>';\n description = `import a remote lane to your workspace and switch to that lane`;\n arguments = [{ name: 'lane', description: 'the remote lane name' }];\n alias = '';\n options = [\n ['x', 'skip-dependency-installation', 'do not install dependencies of the imported components'],\n [\n 'p',\n 'pattern <component-pattern>',\n 'import only components from the lane that fit the specified component-pattern to the workspace. works only when the workspace is empty',\n ],\n ] as CommandOptions;\n loader = true;\n migration = true;\n\n constructor(private switchCmd: SwitchCmd) {}\n\n async report(\n [lane]: [string],\n { skipDependencyInstallation = false, pattern }: { skipDependencyInstallation: boolean; pattern?: string }\n ): Promise<string> {\n return this.switchCmd.report([lane], { getAll: true, skipDependencyInstallation, pattern });\n }\n}\n\nexport class LaneCmd implements Command {\n name = 'lane [sub-command]';\n description = 'manage lanes - if no sub-command is used, runs \"bit lane list\"';\n alias = 'l';\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 <remote-scope-name>', 'show all remote lanes from the specified scope'],\n ['', 'merged', 'list only merged lanes'],\n ['', 'not-merged', \"list only lanes that haven't been merged\"],\n ] as CommandOptions;\n loader = true;\n migration = true;\n group = 'collaborate';\n remoteOp = true;\n skipWorkspace = true;\n helpUrl = 'reference/components/lanes';\n commands: Command[] = [];\n\n constructor(private lanes: LanesMain, private workspace: Workspace, private scope: ScopeMain) {}\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 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 ${\n laneName || this.lanes.getCurrentLaneName()\n }`\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. sets an existing component as the readme of 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 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.getCurrentLaneName()\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.getCurrentLaneName()\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"],"mappings":"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"}
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
3
  Object.defineProperty(exports, "__esModule", {
5
4
  value: true
6
5
  });
@@ -12,6 +11,7 @@ function _react() {
12
11
  };
13
12
  return data;
14
13
  }
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
15
  const Logo = () => /*#__PURE__*/_react().default.createElement("div", {
16
16
  style: {
17
17
  height: '100%',
@@ -1 +1 @@
1
- {"version":3,"names":["_react","data","_interopRequireDefault","require","Logo","default","createElement","style","height","display","justifyContent","width","src","exports"],"sources":["lanes.composition.tsx"],"sourcesContent":["import React from 'react';\n\nexport const Logo = () => (\n <div style={{ height: '100%', display: 'flex', justifyContent: 'center' }}>\n <img style={{ width: 70 }} src=\"https://static.bit.dev/extensions-icons/lanes.svg\" />\n </div>\n);\n"],"mappings":";;;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAMG,IAAI,GAAGA,CAAA,kBAClBJ,MAAA,GAAAK,OAAA,CAAAC,aAAA;EAAKC,KAAK,EAAE;IAAEC,MAAM,EAAE,MAAM;IAAEC,OAAO,EAAE,MAAM;IAAEC,cAAc,EAAE;EAAS;AAAE,gBACxEV,MAAA,GAAAK,OAAA,CAAAC,aAAA;EAAKC,KAAK,EAAE;IAAEI,KAAK,EAAE;EAAG,CAAE;EAACC,GAAG,EAAC;AAAmD,CAAE,CACjF,CACN;AAACC,OAAA,CAAAT,IAAA,GAAAA,IAAA"}
1
+ {"version":3,"names":["_react","data","_interopRequireDefault","require","obj","__esModule","default","Logo","createElement","style","height","display","justifyContent","width","src","exports"],"sources":["lanes.composition.tsx"],"sourcesContent":["import React from 'react';\n\nexport const Logo = () => (\n <div style={{ height: '100%', display: 'flex', justifyContent: 'center' }}>\n <img style={{ width: 70 }} src=\"https://static.bit.dev/extensions-icons/lanes.svg\" />\n </div>\n);\n"],"mappings":";;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAA0B,SAAAC,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAEnB,MAAMG,IAAI,GAAGA,CAAA,kBAClBP,MAAA,GAAAM,OAAA,CAAAE,aAAA;EAAKC,KAAK,EAAE;IAAEC,MAAM,EAAE,MAAM;IAAEC,OAAO,EAAE,MAAM;IAAEC,cAAc,EAAE;EAAS;AAAE,gBACxEZ,MAAA,GAAAM,OAAA,CAAAE,aAAA;EAAKC,KAAK,EAAE;IAAEI,KAAK,EAAE;EAAG,CAAE;EAACC,GAAG,EAAC;AAAmD,CAAE,CACjF,CACN;AAACC,OAAA,CAAAR,IAAA,GAAAA,IAAA"}