@teambit/forking 0.0.537 → 0.0.538

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.
@@ -28,7 +28,7 @@ export declare class ForkCmd implements Command {
28
28
  example: [
29
29
  {
30
30
  cmd: 'fork teambit.base-ui/input/button ui/button';
31
- description: "create a component named 'ui/button' out of the remote 'input/button' component";
31
+ description: "create a component named 'ui/button', forked from the remote 'input/button' component";
32
32
  }
33
33
  ];
34
34
  loader: boolean;
package/dist/fork.cmd.js CHANGED
@@ -25,19 +25,19 @@ class ForkCmd {
25
25
  constructor(forking) {
26
26
  this.forking = forking;
27
27
  (0, _defineProperty2().default)(this, "name", 'fork <source-component-id> [target-component-name]');
28
- (0, _defineProperty2().default)(this, "description", 'create a new component out of an existing one (copies source files and config)');
29
- (0, _defineProperty2().default)(this, "helpUrl", 'docs/components/importing-components#forking-components');
28
+ (0, _defineProperty2().default)(this, "description", 'create a new component forked from an existing one (copies source files and configs)');
29
+ (0, _defineProperty2().default)(this, "helpUrl", 'docs/getting-started/collaborate/importing-components/#fork-a-component');
30
30
  (0, _defineProperty2().default)(this, "arguments", [{
31
31
  name: 'source-component-id',
32
32
  description: 'the component id of the source component'
33
33
  }, {
34
34
  name: 'target-component-name',
35
- description: "the name for the new component (component name without scope). to set a different scope, use the '--scope' flag"
35
+ description: "the name for the new component (component name without scope, e.g. name/spaces/my-button). to set a different scope, use the '--scope' flag"
36
36
  }]);
37
37
  (0, _defineProperty2().default)(this, "group", 'collaborate');
38
38
  (0, _defineProperty2().default)(this, "skipWorkspace", true);
39
39
  (0, _defineProperty2().default)(this, "alias", '');
40
- (0, _defineProperty2().default)(this, "options", [['s', 'scope <string>', 'default scope for the new component'], ['p', 'path <string>', 'relative path in the workspace for the new component. by default the path is `<scope>/<namespace>/<name>`'], ['r', 'refactor', 'update the import/require statements in all dependent components (in the same workspace)'], ['x', 'skip-dependency-installation', 'do not install packages of the imported components'], ['e', 'env <string>', 'set the environment for the new component'], ['', 'skip-config', 'do not copy the config (aspects-config) to the new component. helpful when it fails during aspect loading'], ['', 'preserve', 'avoid renaming files and variables/classes according to the new component name'], ['', 'no-link', 'avoid saving a reference to the original component']]);
40
+ (0, _defineProperty2().default)(this, "options", [['s', 'scope <string>', 'default scope for the new component'], ['p', 'path <string>', 'relative path in the workspace for the new component. by default the path is `<scope>/<namespace>/<name>`'], ['r', 'refactor', 'update the import/require statements in all dependent components (in the same workspace)'], ['x', 'skip-dependency-installation', 'do not install packages of the imported components'], ['e', 'env <string>', 'set the environment for the new component'], ['', 'skip-config', 'do not copy the config (aspects-config, env, etc) to the new component. helpful when it fails during aspect loading'], ['', 'preserve', 'avoid refactoring file and variable/class names according to the new component name'], ['', 'no-link', 'avoid saving a reference to the original component']]);
41
41
  (0, _defineProperty2().default)(this, "example", void 0);
42
42
  (0, _defineProperty2().default)(this, "loader", true);
43
43
  (0, _defineProperty2().default)(this, "migration", true);
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","ForkCmd","constructor","forking","_defineProperty2","default","name","description","report","sourceId","targetId","options","results","fork","targetIdStr","toString","chalk","green","bold","exports"],"sources":["fork.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport { ComponentConfig } from '@teambit/generator';\nimport chalk from 'chalk';\nimport { ForkingMain } from '.';\n\nexport type ForkOptions = {\n scope?: string;\n path?: string;\n refactor?: boolean;\n skipDependencyInstallation?: boolean;\n skipConfig?: boolean;\n preserve?: boolean;\n noLink?: boolean;\n env?: string;\n config?: ComponentConfig;\n};\n\nexport class ForkCmd implements Command {\n name = 'fork <source-component-id> [target-component-name]';\n description = 'create a new component out of an existing one (copies source files and config)';\n helpUrl = 'docs/components/importing-components#forking-components';\n arguments = [\n { name: 'source-component-id', description: 'the component id of the source component' },\n {\n name: 'target-component-name',\n description:\n \"the name for the new component (component name without scope). to set a different scope, use the '--scope' flag\",\n },\n ];\n group = 'collaborate';\n skipWorkspace = true;\n alias = '';\n\n options = [\n ['s', 'scope <string>', 'default scope for the new component'],\n [\n 'p',\n 'path <string>',\n 'relative path in the workspace for the new component. by default the path is `<scope>/<namespace>/<name>`',\n ],\n ['r', 'refactor', 'update the import/require statements in all dependent components (in the same workspace)'],\n ['x', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ['e', 'env <string>', 'set the environment for the new component'],\n [\n '',\n 'skip-config',\n 'do not copy the config (aspects-config) to the new component. helpful when it fails during aspect loading',\n ],\n ['', 'preserve', 'avoid renaming files and variables/classes according to the new component name'],\n ['', 'no-link', 'avoid saving a reference to the original component'],\n ] as CommandOptions;\n\n example: [\n {\n cmd: 'fork teambit.base-ui/input/button ui/button';\n description: \"create a component named 'ui/button' out of the remote 'input/button' component\";\n }\n ];\n loader = true;\n migration = true;\n remoteOp = true;\n\n constructor(private forking: ForkingMain) {}\n\n async report([sourceId, targetId]: [string, string], options: ForkOptions): Promise<string> {\n const results = await this.forking.fork(sourceId, targetId, options);\n const targetIdStr = results.toString();\n return chalk.green(`successfully forked ${chalk.bold(targetIdStr)} from ${chalk.bold(sourceId)}`);\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAEA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAeO,MAAMG,OAAO,CAAoB;EA6CtCC,WAAWA,CAASC,OAAoB,EAAE;IAAA,KAAtBA,OAAoB,GAApBA,OAAoB;IAAA,IAAAC,gBAAA,GAAAC,OAAA,gBA5CjC,oDAAoD;IAAA,IAAAD,gBAAA,GAAAC,OAAA,uBAC7C,gFAAgF;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBACpF,yDAAyD;IAAA,IAAAD,gBAAA,GAAAC,OAAA,qBACvD,CACV;MAAEC,IAAI,EAAE,qBAAqB;MAAEC,WAAW,EAAE;IAA2C,CAAC,EACxF;MACED,IAAI,EAAE,uBAAuB;MAC7BC,WAAW,EACT;IACJ,CAAC,CACF;IAAA,IAAAH,gBAAA,GAAAC,OAAA,iBACO,aAAa;IAAA,IAAAD,gBAAA,GAAAC,OAAA,yBACL,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,iBACZ,EAAE;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBAEA,CACR,CAAC,GAAG,EAAE,gBAAgB,EAAE,qCAAqC,CAAC,EAC9D,CACE,GAAG,EACH,eAAe,EACf,2GAA2G,CAC5G,EACD,CAAC,GAAG,EAAE,UAAU,EAAE,0FAA0F,CAAC,EAC7G,CAAC,GAAG,EAAE,8BAA8B,EAAE,oDAAoD,CAAC,EAC3F,CAAC,GAAG,EAAE,cAAc,EAAE,2CAA2C,CAAC,EAClE,CACE,EAAE,EACF,aAAa,EACb,2GAA2G,CAC5G,EACD,CAAC,EAAE,EAAE,UAAU,EAAE,gFAAgF,CAAC,EAClG,CAAC,EAAE,EAAE,SAAS,EAAE,oDAAoD,CAAC,CACtE;IAAA,IAAAD,gBAAA,GAAAC,OAAA;IAAA,IAAAD,gBAAA,GAAAC,OAAA,kBAQQ,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,qBACD,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,oBACL,IAAI;EAE4B;EAE3C,MAAMG,MAAMA,CAAC,CAACC,QAAQ,EAAEC,QAAQ,CAAmB,EAAEC,OAAoB,EAAmB;IAC1F,MAAMC,OAAO,GAAG,MAAM,IAAI,CAACT,OAAO,CAACU,IAAI,CAACJ,QAAQ,EAAEC,QAAQ,EAAEC,OAAO,CAAC;IACpE,MAAMG,WAAW,GAAGF,OAAO,CAACG,QAAQ,CAAC,CAAC;IACtC,OAAOC,gBAAK,CAACC,KAAK,CAAE,uBAAsBD,gBAAK,CAACE,IAAI,CAACJ,WAAW,CAAE,SAAQE,gBAAK,CAACE,IAAI,CAACT,QAAQ,CAAE,EAAC,CAAC;EACnG;AACF;AAACU,OAAA,CAAAlB,OAAA,GAAAA,OAAA"}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","ForkCmd","constructor","forking","_defineProperty2","default","name","description","report","sourceId","targetId","options","results","fork","targetIdStr","toString","chalk","green","bold","exports"],"sources":["fork.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport { ComponentConfig } from '@teambit/generator';\nimport chalk from 'chalk';\nimport { ForkingMain } from '.';\n\nexport type ForkOptions = {\n scope?: string;\n path?: string;\n refactor?: boolean;\n skipDependencyInstallation?: boolean;\n skipConfig?: boolean;\n preserve?: boolean;\n noLink?: boolean;\n env?: string;\n config?: ComponentConfig;\n};\n\nexport class ForkCmd implements Command {\n name = 'fork <source-component-id> [target-component-name]';\n description = 'create a new component forked from an existing one (copies source files and configs)';\n helpUrl = 'docs/getting-started/collaborate/importing-components/#fork-a-component';\n arguments = [\n { name: 'source-component-id', description: 'the component id of the source component' },\n {\n name: 'target-component-name',\n description:\n \"the name for the new component (component name without scope, e.g. name/spaces/my-button). to set a different scope, use the '--scope' flag\",\n },\n ];\n group = 'collaborate';\n skipWorkspace = true;\n alias = '';\n\n options = [\n ['s', 'scope <string>', 'default scope for the new component'],\n [\n 'p',\n 'path <string>',\n 'relative path in the workspace for the new component. by default the path is `<scope>/<namespace>/<name>`',\n ],\n ['r', 'refactor', 'update the import/require statements in all dependent components (in the same workspace)'],\n ['x', 'skip-dependency-installation', 'do not install packages of the imported components'],\n ['e', 'env <string>', 'set the environment for the new component'],\n [\n '',\n 'skip-config',\n 'do not copy the config (aspects-config, env, etc) to the new component. helpful when it fails during aspect loading',\n ],\n ['', 'preserve', 'avoid refactoring file and variable/class names according to the new component name'],\n ['', 'no-link', 'avoid saving a reference to the original component'],\n ] as CommandOptions;\n\n example: [\n {\n cmd: 'fork teambit.base-ui/input/button ui/button';\n description: \"create a component named 'ui/button', forked from the remote 'input/button' component\";\n }\n ];\n loader = true;\n migration = true;\n remoteOp = true;\n\n constructor(private forking: ForkingMain) {}\n\n async report([sourceId, targetId]: [string, string], options: ForkOptions): Promise<string> {\n const results = await this.forking.fork(sourceId, targetId, options);\n const targetIdStr = results.toString();\n return chalk.green(`successfully forked ${chalk.bold(targetIdStr)} from ${chalk.bold(sourceId)}`);\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAEA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAeO,MAAMG,OAAO,CAAoB;EA6CtCC,WAAWA,CAASC,OAAoB,EAAE;IAAA,KAAtBA,OAAoB,GAApBA,OAAoB;IAAA,IAAAC,gBAAA,GAAAC,OAAA,gBA5CjC,oDAAoD;IAAA,IAAAD,gBAAA,GAAAC,OAAA,uBAC7C,sFAAsF;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBAC1F,yEAAyE;IAAA,IAAAD,gBAAA,GAAAC,OAAA,qBACvE,CACV;MAAEC,IAAI,EAAE,qBAAqB;MAAEC,WAAW,EAAE;IAA2C,CAAC,EACxF;MACED,IAAI,EAAE,uBAAuB;MAC7BC,WAAW,EACT;IACJ,CAAC,CACF;IAAA,IAAAH,gBAAA,GAAAC,OAAA,iBACO,aAAa;IAAA,IAAAD,gBAAA,GAAAC,OAAA,yBACL,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,iBACZ,EAAE;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBAEA,CACR,CAAC,GAAG,EAAE,gBAAgB,EAAE,qCAAqC,CAAC,EAC9D,CACE,GAAG,EACH,eAAe,EACf,2GAA2G,CAC5G,EACD,CAAC,GAAG,EAAE,UAAU,EAAE,0FAA0F,CAAC,EAC7G,CAAC,GAAG,EAAE,8BAA8B,EAAE,oDAAoD,CAAC,EAC3F,CAAC,GAAG,EAAE,cAAc,EAAE,2CAA2C,CAAC,EAClE,CACE,EAAE,EACF,aAAa,EACb,qHAAqH,CACtH,EACD,CAAC,EAAE,EAAE,UAAU,EAAE,qFAAqF,CAAC,EACvG,CAAC,EAAE,EAAE,SAAS,EAAE,oDAAoD,CAAC,CACtE;IAAA,IAAAD,gBAAA,GAAAC,OAAA;IAAA,IAAAD,gBAAA,GAAAC,OAAA,kBAQQ,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,qBACD,IAAI;IAAA,IAAAD,gBAAA,GAAAC,OAAA,oBACL,IAAI;EAE4B;EAE3C,MAAMG,MAAMA,CAAC,CAACC,QAAQ,EAAEC,QAAQ,CAAmB,EAAEC,OAAoB,EAAmB;IAC1F,MAAMC,OAAO,GAAG,MAAM,IAAI,CAACT,OAAO,CAACU,IAAI,CAACJ,QAAQ,EAAEC,QAAQ,EAAEC,OAAO,CAAC;IACpE,MAAMG,WAAW,GAAGF,OAAO,CAACG,QAAQ,CAAC,CAAC;IACtC,OAAOC,gBAAK,CAACC,KAAK,CAAE,uBAAsBD,gBAAK,CAACE,IAAI,CAACJ,WAAW,CAAE,SAAQE,gBAAK,CAACE,IAAI,CAACT,QAAQ,CAAE,EAAC,CAAC;EACnG;AACF;AAACU,OAAA,CAAAlB,OAAA,GAAAA,OAAA"}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_forking@0.0.537/dist/forking.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_forking@0.0.537/dist/forking.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_forking@0.0.538/dist/forking.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_forking@0.0.538/dist/forking.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -25,7 +25,7 @@ class ScopeForkCmd {
25
25
  constructor(forking) {
26
26
  this.forking = forking;
27
27
  (0, _defineProperty2().default)(this, "name", 'fork <original-scope> <new-scope>');
28
- (0, _defineProperty2().default)(this, "description", 'fork all components of the original-scope and refactor the source-code to use the new package names');
28
+ (0, _defineProperty2().default)(this, "description", 'fork all components of the original-scope and refactor the source-code to use the new scope name');
29
29
  (0, _defineProperty2().default)(this, "options", []);
30
30
  (0, _defineProperty2().default)(this, "group", 'development');
31
31
  }
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","ScopeForkCmd","constructor","forking","_defineProperty2","default","report","originalScope","newScope","forkedIds","forkScope","title","chalk","green","bold","map","id","toString","join","exports"],"sources":["scope-fork.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { ForkingMain } from './forking.main.runtime';\n\nexport class ScopeForkCmd implements Command {\n name = 'fork <original-scope> <new-scope>';\n description = 'fork all components of the original-scope and refactor the source-code to use the new package names';\n options = [] as CommandOptions;\n group = 'development';\n\n constructor(private forking: ForkingMain) {}\n\n async report([originalScope, newScope]: [string, string]) {\n const forkedIds = await this.forking.forkScope(originalScope, newScope);\n const title = chalk.green(\n `successfully forked ${chalk.bold(originalScope)} into ${chalk.bold(\n newScope\n )}. the following components were created`\n );\n return `${title}\\n${forkedIds.map((id) => id.toString()).join('\\n')}`;\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AACA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,MAAMG,YAAY,CAAoB;EAM3CC,WAAWA,CAASC,OAAoB,EAAE;IAAA,KAAtBA,OAAoB,GAApBA,OAAoB;IAAA,IAAAC,gBAAA,GAAAC,OAAA,gBALjC,mCAAmC;IAAA,IAAAD,gBAAA,GAAAC,OAAA,uBAC5B,qGAAqG;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBACzG,EAAE;IAAA,IAAAD,gBAAA,GAAAC,OAAA,iBACJ,aAAa;EAEsB;EAE3C,MAAMC,MAAMA,CAAC,CAACC,aAAa,EAAEC,QAAQ,CAAmB,EAAE;IACxD,MAAMC,SAAS,GAAG,MAAM,IAAI,CAACN,OAAO,CAACO,SAAS,CAACH,aAAa,EAAEC,QAAQ,CAAC;IACvE,MAAMG,KAAK,GAAGC,gBAAK,CAACC,KAAK,CACtB,uBAAsBD,gBAAK,CAACE,IAAI,CAACP,aAAa,CAAE,SAAQK,gBAAK,CAACE,IAAI,CACjEN,QACF,CAAE,yCACJ,CAAC;IACD,OAAQ,GAAEG,KAAM,KAAIF,SAAS,CAACM,GAAG,CAAEC,EAAE,IAAKA,EAAE,CAACC,QAAQ,CAAC,CAAC,CAAC,CAACC,IAAI,CAAC,IAAI,CAAE,EAAC;EACvE;AACF;AAACC,OAAA,CAAAlB,YAAA,GAAAA,YAAA"}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","ScopeForkCmd","constructor","forking","_defineProperty2","default","report","originalScope","newScope","forkedIds","forkScope","title","chalk","green","bold","map","id","toString","join","exports"],"sources":["scope-fork.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { ForkingMain } from './forking.main.runtime';\n\nexport class ScopeForkCmd implements Command {\n name = 'fork <original-scope> <new-scope>';\n description = 'fork all components of the original-scope and refactor the source-code to use the new scope name';\n options = [] as CommandOptions;\n group = 'development';\n\n constructor(private forking: ForkingMain) {}\n\n async report([originalScope, newScope]: [string, string]) {\n const forkedIds = await this.forking.forkScope(originalScope, newScope);\n const title = chalk.green(\n `successfully forked ${chalk.bold(originalScope)} into ${chalk.bold(\n newScope\n )}. the following components were created`\n );\n return `${title}\\n${forkedIds.map((id) => id.toString()).join('\\n')}`;\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AACA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGO,MAAMG,YAAY,CAAoB;EAM3CC,WAAWA,CAASC,OAAoB,EAAE;IAAA,KAAtBA,OAAoB,GAApBA,OAAoB;IAAA,IAAAC,gBAAA,GAAAC,OAAA,gBALjC,mCAAmC;IAAA,IAAAD,gBAAA,GAAAC,OAAA,uBAC5B,kGAAkG;IAAA,IAAAD,gBAAA,GAAAC,OAAA,mBACtG,EAAE;IAAA,IAAAD,gBAAA,GAAAC,OAAA,iBACJ,aAAa;EAEsB;EAE3C,MAAMC,MAAMA,CAAC,CAACC,aAAa,EAAEC,QAAQ,CAAmB,EAAE;IACxD,MAAMC,SAAS,GAAG,MAAM,IAAI,CAACN,OAAO,CAACO,SAAS,CAACH,aAAa,EAAEC,QAAQ,CAAC;IACvE,MAAMG,KAAK,GAAGC,gBAAK,CAACC,KAAK,CACtB,uBAAsBD,gBAAK,CAACE,IAAI,CAACP,aAAa,CAAE,SAAQK,gBAAK,CAACE,IAAI,CACjEN,QACF,CAAE,yCACJ,CAAC;IACD,OAAQ,GAAEG,KAAM,KAAIF,SAAS,CAACM,GAAG,CAAEC,EAAE,IAAKA,EAAE,CAACC,QAAQ,CAAC,CAAC,CAAC,CAACC,IAAI,CAAC,IAAI,CAAE,EAAC;EACvE;AACF;AAACC,OAAA,CAAAlB,YAAA,GAAAA,YAAA"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/forking",
3
- "version": "0.0.537",
3
+ "version": "0.0.538",
4
4
  "homepage": "https://bit.cloud/teambit/component/forking",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "forking",
9
- "version": "0.0.537"
9
+ "version": "0.0.538"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -18,18 +18,18 @@
18
18
  "@teambit/harmony": "0.4.6",
19
19
  "@teambit/component-id": "0.0.427",
20
20
  "@teambit/legacy-bit-id": "1.0.0",
21
- "@teambit/cli": "0.0.759",
22
- "@teambit/generator": "0.0.1133",
23
- "@teambit/component": "0.0.1133",
24
- "@teambit/graphql": "0.0.1133",
21
+ "@teambit/cli": "0.0.760",
22
+ "@teambit/generator": "0.0.1134",
23
+ "@teambit/component": "0.0.1134",
24
+ "@teambit/graphql": "0.0.1134",
25
25
  "@teambit/bit-error": "0.0.402",
26
- "@teambit/dependency-resolver": "0.0.1133",
27
- "@teambit/install": "0.0.217",
28
- "@teambit/new-component-helper": "0.0.537",
29
- "@teambit/pkg": "0.0.1133",
30
- "@teambit/refactoring": "0.0.430",
31
- "@teambit/typescript": "0.0.1133",
32
- "@teambit/workspace": "0.0.1133"
26
+ "@teambit/dependency-resolver": "0.0.1134",
27
+ "@teambit/install": "0.0.218",
28
+ "@teambit/new-component-helper": "0.0.538",
29
+ "@teambit/pkg": "0.0.1134",
30
+ "@teambit/refactoring": "0.0.431",
31
+ "@teambit/typescript": "0.0.1134",
32
+ "@teambit/workspace": "0.0.1134"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/react": "^17.0.8",
@@ -41,7 +41,7 @@
41
41
  "@types/testing-library__jest-dom": "5.9.5"
42
42
  },
43
43
  "peerDependencies": {
44
- "@teambit/legacy": "1.0.542",
44
+ "@teambit/legacy": "1.0.544",
45
45
  "react": "^16.8.0 || ^17.0.0",
46
46
  "react-dom": "^16.8.0 || ^17.0.0"
47
47
  },