@teambit/cli 0.0.706 → 0.0.708

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/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
+ import { CLIAspect, MainRuntime } from './cli.aspect';
1
2
  export type { CLIMain, CommandList, CommandsSlot } from './cli.main.runtime';
2
3
  export { Command, CLIArgs, Flags, GenericObject } from '@teambit/legacy/dist/cli/command';
3
4
  export { CommandOptions } from '@teambit/legacy/dist/cli/legacy-command';
4
5
  export * from './exceptions';
5
- export { CLIAspect, MainRuntime } from './cli.aspect';
6
+ export { CLIAspect as default, MainRuntime, CLIAspect };
package/dist/index.js CHANGED
@@ -4,13 +4,13 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  var _exportNames = {
7
+ CLIAspect: true,
8
+ MainRuntime: true,
7
9
  Command: true,
8
10
  CLIArgs: true,
9
11
  Flags: true,
10
12
  GenericObject: true,
11
- CommandOptions: true,
12
- CLIAspect: true,
13
- MainRuntime: true
13
+ CommandOptions: true
14
14
  };
15
15
  Object.defineProperty(exports, "CLIArgs", {
16
16
  enumerable: true,
@@ -54,6 +54,19 @@ Object.defineProperty(exports, "MainRuntime", {
54
54
  return _cli().MainRuntime;
55
55
  }
56
56
  });
57
+ Object.defineProperty(exports, "default", {
58
+ enumerable: true,
59
+ get: function () {
60
+ return _cli().CLIAspect;
61
+ }
62
+ });
63
+ function _cli() {
64
+ const data = require("./cli.aspect");
65
+ _cli = function () {
66
+ return data;
67
+ };
68
+ return data;
69
+ }
57
70
  function _command() {
58
71
  const data = require("@teambit/legacy/dist/cli/command");
59
72
  _command = function () {
@@ -80,12 +93,5 @@ Object.keys(_exceptions).forEach(function (key) {
80
93
  }
81
94
  });
82
95
  });
83
- function _cli() {
84
- const data = require("./cli.aspect");
85
- _cli = function () {
86
- return data;
87
- };
88
- return data;
89
- }
90
96
 
91
97
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export type { CLIMain, CommandList, CommandsSlot } from './cli.main.runtime';\nexport { Command, CLIArgs, Flags, GenericObject } from '@teambit/legacy/dist/cli/command';\nexport { CommandOptions } from '@teambit/legacy/dist/cli/legacy-command';\nexport * from './exceptions';\nexport { CLIAspect, MainRuntime } from './cli.aspect';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA"}
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["import { CLIAspect, MainRuntime } from './cli.aspect';\n\nexport type { CLIMain, CommandList, CommandsSlot } from './cli.main.runtime';\nexport { Command, CLIArgs, Flags, GenericObject } from '@teambit/legacy/dist/cli/command';\nexport { CommandOptions } from '@teambit/legacy/dist/cli/legacy-command';\nexport * from './exceptions';\n\nexport { CLIAspect as default, MainRuntime, CLIAspect };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAGA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA"}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.706/dist/cli.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.706/dist/cli.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.708/dist/cli.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.708/dist/cli.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/cli",
3
- "version": "0.0.706",
3
+ "version": "0.0.708",
4
4
  "homepage": "https://bit.cloud/teambit/harmony/cli",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.harmony",
8
8
  "name": "cli",
9
- "version": "0.0.706"
9
+ "version": "0.0.708"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -19,8 +19,8 @@
19
19
  "core-js": "^3.0.0",
20
20
  "@babel/runtime": "7.20.0",
21
21
  "@teambit/harmony": "0.4.6",
22
- "@teambit/community": "0.0.254",
23
- "@teambit/logger": "0.0.799",
22
+ "@teambit/community": "0.0.256",
23
+ "@teambit/logger": "0.0.801",
24
24
  "@teambit/bit-error": "0.0.402"
25
25
  },
26
26
  "devDependencies": {
@@ -35,7 +35,7 @@
35
35
  "@types/testing-library__jest-dom": "5.9.5"
36
36
  },
37
37
  "peerDependencies": {
38
- "@teambit/legacy": "1.0.486",
38
+ "@teambit/legacy": "1.0.488",
39
39
  "react": "^16.8.0 || ^17.0.0",
40
40
  "react-dom": "^16.8.0 || ^17.0.0"
41
41
  },
Binary file