@teambit/generator 0.0.759 → 0.0.762
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/create.cmd.d.ts +14 -0
- package/dist/create.cmd.js +16 -2
- package/dist/create.cmd.js.map +1 -1
- package/dist/new.cmd.d.ts +4 -0
- package/dist/new.cmd.js +10 -3
- package/dist/new.cmd.js.map +1 -1
- package/package-tar/teambit-generator-0.0.762.tgz +0 -0
- package/package.json +18 -18
- package/{preview-1655090873683.js → preview-1655279906398.js} +2 -2
- package/package-tar/teambit-generator-0.0.759.tgz +0 -0
package/dist/create.cmd.d.ts
CHANGED
|
@@ -14,6 +14,20 @@ export declare class CreateCmd implements Command {
|
|
|
14
14
|
description: string;
|
|
15
15
|
alias: string;
|
|
16
16
|
loader: boolean;
|
|
17
|
+
arguments: [
|
|
18
|
+
{
|
|
19
|
+
name: 'template-name';
|
|
20
|
+
description: "the template for generating the component \n(run 'bit templates' for a list of available templates)";
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'component-names...';
|
|
24
|
+
description: 'a list of component names to generate';
|
|
25
|
+
}
|
|
26
|
+
];
|
|
27
|
+
examples: {
|
|
28
|
+
cmd: string;
|
|
29
|
+
description: string;
|
|
30
|
+
}[];
|
|
17
31
|
group: string;
|
|
18
32
|
options: CommandOptions;
|
|
19
33
|
constructor(generator: GeneratorMain, docsDomain: string);
|
package/dist/create.cmd.js
CHANGED
|
@@ -35,10 +35,24 @@ class CreateCmd {
|
|
|
35
35
|
constructor(generator, docsDomain) {
|
|
36
36
|
this.generator = generator;
|
|
37
37
|
this.docsDomain = docsDomain;
|
|
38
|
-
(0, _defineProperty2().default)(this, "name", 'create <
|
|
39
|
-
(0, _defineProperty2().default)(this, "description", 'create a new component
|
|
38
|
+
(0, _defineProperty2().default)(this, "name", 'create <template-name> <component-names...>');
|
|
39
|
+
(0, _defineProperty2().default)(this, "description", 'create a new component (source files and config) using a template.');
|
|
40
40
|
(0, _defineProperty2().default)(this, "alias", '');
|
|
41
41
|
(0, _defineProperty2().default)(this, "loader", true);
|
|
42
|
+
(0, _defineProperty2().default)(this, "arguments", void 0);
|
|
43
|
+
(0, _defineProperty2().default)(this, "examples", [{
|
|
44
|
+
cmd: 'bit create react ui/button',
|
|
45
|
+
description: "creates a component named 'ui/button' using the 'react' template"
|
|
46
|
+
}, {
|
|
47
|
+
cmd: 'bit create react ui/button pages/register',
|
|
48
|
+
description: "creates two components, 'ui/button' and 'pages/register', using the 'react' template"
|
|
49
|
+
}, {
|
|
50
|
+
cmd: 'bit create react ui/button --scope my-org.my-scope',
|
|
51
|
+
description: "creates a component named 'ui/button' and sets it scope to 'my-org.my-scope'. \nby default, the scope is the `defaultScope` value, configured in your `workspace.jsonc`."
|
|
52
|
+
}, {
|
|
53
|
+
cmd: 'bit create react ui/button --env teambit.community/envs/community-react@1.95.13',
|
|
54
|
+
description: "creates a component named 'ui/button' and sets it to use the 'community-react' env. \n(the template's default env is 'teambit.react/react')."
|
|
55
|
+
}]);
|
|
42
56
|
(0, _defineProperty2().default)(this, "group", 'development');
|
|
43
57
|
(0, _defineProperty2().default)(this, "options", [['n', 'namespace <string>', `sets the component's namespace and nested dirs inside the scope`], ['s', 'scope <string>', `sets the component's scope-name. if not entered, the default-scope will be used`], ['a', 'aspect <string>', 'aspect-id of the template. helpful when multiple aspects use the same template name'], ['p', 'path <string>', 'relative path in the workspace. by default the path is `<scope>/<namespace>/<name>`'], ['e', 'env <string>', "set the component's environment. (overrides the env from variants and the template)"]]);
|
|
44
58
|
}
|
package/dist/create.cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["CreateCmd","constructor","generator","docsDomain","report","templateName","componentNames","options","results","generateComponentTemplate","title","length","componentsData","map","result","chalk","bold","id","toString","dir","envId","envSetBy","join","footer","green"],"sources":["create.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { GeneratorMain } from './generator.main.runtime';\n\nexport type CreateOptions = {\n namespace?: string;\n aspect?: string;\n scope?: string;\n path?: string;\n env?: string;\n};\n\nexport class CreateCmd implements Command {\n name = 'create <
|
|
1
|
+
{"version":3,"names":["CreateCmd","constructor","generator","docsDomain","cmd","description","report","templateName","componentNames","options","results","generateComponentTemplate","title","length","componentsData","map","result","chalk","bold","id","toString","dir","envId","envSetBy","join","footer","green"],"sources":["create.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { GeneratorMain } from './generator.main.runtime';\n\nexport type CreateOptions = {\n namespace?: string;\n aspect?: string;\n scope?: string;\n path?: string;\n env?: string;\n};\n\nexport class CreateCmd implements Command {\n name = 'create <template-name> <component-names...>';\n description = 'create a new component (source files and config) using a template.';\n alias = '';\n loader = true;\n arguments: [\n {\n name: 'template-name';\n description: \"the template for generating the component \\n(run 'bit templates' for a list of available templates)\";\n },\n {\n name: 'component-names...';\n description: 'a list of component names to generate';\n }\n ];\n examples = [\n {\n cmd: 'bit create react ui/button',\n description: \"creates a component named 'ui/button' using the 'react' template\",\n },\n {\n cmd: 'bit create react ui/button pages/register',\n description: \"creates two components, 'ui/button' and 'pages/register', using the 'react' template\",\n },\n {\n cmd: 'bit create react ui/button --scope my-org.my-scope',\n description:\n \"creates a component named 'ui/button' and sets it scope to 'my-org.my-scope'. \\nby default, the scope is the `defaultScope` value, configured in your `workspace.jsonc`.\",\n },\n {\n cmd: 'bit create react ui/button --env teambit.community/envs/community-react@1.95.13',\n description:\n \"creates a component named 'ui/button' and sets it to use the 'community-react' env. \\n(the template's default env is 'teambit.react/react').\",\n },\n ];\n group = 'development';\n options = [\n ['n', 'namespace <string>', `sets the component's namespace and nested dirs inside the scope`],\n ['s', 'scope <string>', `sets the component's scope-name. if not entered, the default-scope will be used`],\n ['a', 'aspect <string>', 'aspect-id of the template. helpful when multiple aspects use the same template name'],\n ['p', 'path <string>', 'relative path in the workspace. by default the path is `<scope>/<namespace>/<name>`'],\n ['e', 'env <string>', \"set the component's environment. (overrides the env from variants and the template)\"],\n ] as CommandOptions;\n\n constructor(private generator: GeneratorMain, private docsDomain: string) {}\n\n async report([templateName, componentNames]: [string, string[]], options: CreateOptions) {\n const results = await this.generator.generateComponentTemplate(componentNames, templateName, options);\n const title = `${results.length} component(s) were created`;\n\n const componentsData = results\n .map((result) => {\n return `${chalk.bold(result.id.toString())}\n location: ${result.dir}\n env: ${result.envId} (set by ${result.envSetBy})\n`;\n })\n .join('\\n');\n const footer = `env configuration is according to workspace variants, template config or --env flag. learn more at https://${this.docsDomain}/envs/using-envs`;\n\n return `${chalk.green(title)}\\n\\n${componentsData}\\n\\n${footer}`;\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAWO,MAAMA,SAAN,CAAmC;EA4CxCC,WAAW,CAASC,SAAT,EAA2CC,UAA3C,EAA+D;IAAA,KAAtDD,SAAsD,GAAtDA,SAAsD;IAAA,KAApBC,UAAoB,GAApBA,UAAoB;IAAA,8CA3CnE,6CA2CmE;IAAA,qDA1C5D,oEA0C4D;IAAA,+CAzClE,EAyCkE;IAAA,gDAxCjE,IAwCiE;IAAA;IAAA,kDA7B/D,CACT;MACEC,GAAG,EAAE,4BADP;MAEEC,WAAW,EAAE;IAFf,CADS,EAKT;MACED,GAAG,EAAE,2CADP;MAEEC,WAAW,EAAE;IAFf,CALS,EAST;MACED,GAAG,EAAE,oDADP;MAEEC,WAAW,EACT;IAHJ,CATS,EAcT;MACED,GAAG,EAAE,iFADP;MAEEC,WAAW,EACT;IAHJ,CAdS,CA6B+D;IAAA,+CATlE,aASkE;IAAA,iDARhE,CACR,CAAC,GAAD,EAAM,oBAAN,EAA6B,iEAA7B,CADQ,EAER,CAAC,GAAD,EAAM,gBAAN,EAAyB,iFAAzB,CAFQ,EAGR,CAAC,GAAD,EAAM,iBAAN,EAAyB,qFAAzB,CAHQ,EAIR,CAAC,GAAD,EAAM,eAAN,EAAuB,qFAAvB,CAJQ,EAKR,CAAC,GAAD,EAAM,cAAN,EAAsB,qFAAtB,CALQ,CAQgE;EAAE;;EAEhE,MAANC,MAAM,CAAC,CAACC,YAAD,EAAeC,cAAf,CAAD,EAAqDC,OAArD,EAA6E;IACvF,MAAMC,OAAO,GAAG,MAAM,KAAKR,SAAL,CAAeS,yBAAf,CAAyCH,cAAzC,EAAyDD,YAAzD,EAAuEE,OAAvE,CAAtB;IACA,MAAMG,KAAK,GAAI,GAAEF,OAAO,CAACG,MAAO,4BAAhC;IAEA,MAAMC,cAAc,GAAGJ,OAAO,CAC3BK,GADoB,CACfC,MAAD,IAAY;MACf,OAAQ,GAAEC,gBAAA,CAAMC,IAAN,CAAWF,MAAM,CAACG,EAAP,CAAUC,QAAV,EAAX,CAAiC;AACnD,gBAAgBJ,MAAM,CAACK,GAAI;AAC3B,gBAAgBL,MAAM,CAACM,KAAM,YAAWN,MAAM,CAACO,QAAS;AACxD,CAHQ;IAID,CANoB,EAOpBC,IAPoB,CAOf,IAPe,CAAvB;IAQA,MAAMC,MAAM,GAAI,8GAA6G,KAAKtB,UAAW,kBAA7I;IAEA,OAAQ,GAAEc,gBAAA,CAAMS,KAAN,CAAYd,KAAZ,CAAmB,OAAME,cAAe,OAAMW,MAAO,EAA/D;EACD;;AA7DuC"}
|
package/dist/new.cmd.d.ts
CHANGED
package/dist/new.cmd.js
CHANGED
|
@@ -34,12 +34,19 @@ function _chalk() {
|
|
|
34
34
|
class NewCmd {
|
|
35
35
|
constructor(generator) {
|
|
36
36
|
this.generator = generator;
|
|
37
|
-
(0, _defineProperty2().default)(this, "name", 'new <
|
|
38
|
-
(0, _defineProperty2().default)(this, "description", '
|
|
37
|
+
(0, _defineProperty2().default)(this, "name", 'new <template-name> <workspace-name>');
|
|
38
|
+
(0, _defineProperty2().default)(this, "description", 'create a new workspace from a template');
|
|
39
|
+
(0, _defineProperty2().default)(this, "arguments", [{
|
|
40
|
+
name: 'template-name',
|
|
41
|
+
description: "the name of the workspace template (run 'bit templates', outside of a workspace, to get a list of available templates)"
|
|
42
|
+
}, {
|
|
43
|
+
name: 'workspace-name',
|
|
44
|
+
description: 'the name for the new workspace and workspace directory'
|
|
45
|
+
}]);
|
|
39
46
|
(0, _defineProperty2().default)(this, "alias", '');
|
|
40
47
|
(0, _defineProperty2().default)(this, "loader", true);
|
|
41
48
|
(0, _defineProperty2().default)(this, "group", 'start');
|
|
42
|
-
(0, _defineProperty2().default)(this, "options", [['a', 'aspect <
|
|
49
|
+
(0, _defineProperty2().default)(this, "options", [['a', 'aspect <aspect-id>', 'aspect-id of the template. mandatory for non-core aspects. helpful for core aspects in case of a name collision'], ['d', 'default-scope <scope-name>', `set defaultScope in the new workspace.jsonc`], ['', 'standalone', 'DEPRECATED. use --skip-git instead'], ['s', 'skip-git', 'skip generation of Git repository'], ['e', 'empty', 'empty workspace with no components (relevant for templates that add components by default)'], ['', 'load-from <path-to-template>', 'path to the workspace containing the template. helpful during a development of a workspace-template']]);
|
|
43
50
|
}
|
|
44
51
|
|
|
45
52
|
async report([templateName, workspaceName], options) {
|
package/dist/new.cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NewCmd","constructor","generator","report","templateName","workspaceName","options","skipGit","standalone","results","generateWorkspaceTemplate","chalk","white","green","yellow","bold"],"sources":["new.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { GeneratorMain } from './generator.main.runtime';\n\nexport type NewOptions = {\n aspect?: string;\n defaultScope?: string;\n skipGit?: boolean;\n loadFrom?: string;\n empty?: boolean;\n};\n\nexport class NewCmd implements Command {\n name = 'new <
|
|
1
|
+
{"version":3,"names":["NewCmd","constructor","generator","name","description","report","templateName","workspaceName","options","skipGit","standalone","results","generateWorkspaceTemplate","chalk","white","green","yellow","bold"],"sources":["new.cmd.ts"],"sourcesContent":["import { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport { GeneratorMain } from './generator.main.runtime';\n\nexport type NewOptions = {\n aspect?: string;\n defaultScope?: string;\n skipGit?: boolean;\n loadFrom?: string;\n empty?: boolean;\n};\n\nexport class NewCmd implements Command {\n name = 'new <template-name> <workspace-name>';\n description = 'create a new workspace from a template';\n arguments = [\n {\n name: 'template-name',\n description:\n \"the name of the workspace template (run 'bit templates', outside of a workspace, to get a list of available templates)\",\n },\n { name: 'workspace-name', description: 'the name for the new workspace and workspace directory' },\n ];\n alias = '';\n loader = true;\n group = 'start';\n options = [\n [\n 'a',\n 'aspect <aspect-id>',\n 'aspect-id of the template. mandatory for non-core aspects. helpful for core aspects in case of a name collision',\n ],\n ['d', 'default-scope <scope-name>', `set defaultScope in the new workspace.jsonc`],\n ['', 'standalone', 'DEPRECATED. use --skip-git instead'],\n ['s', 'skip-git', 'skip generation of Git repository'],\n ['e', 'empty', 'empty workspace with no components (relevant for templates that add components by default)'],\n [\n '',\n 'load-from <path-to-template>',\n 'path to the workspace containing the template. helpful during a development of a workspace-template',\n ],\n ] as CommandOptions;\n\n constructor(private generator: GeneratorMain) {}\n\n async report([templateName, workspaceName]: [string, string], options: NewOptions & { standalone: boolean }) {\n options.skipGit = options.skipGit ?? options.standalone;\n const results = await this.generator.generateWorkspaceTemplate(workspaceName, templateName, options);\n return chalk.white(\n `${chalk.green(`\n\nCongrats! A new workspace has been created successfully at '${results}'`)}\n\nInside the directory '${workspaceName}' you can run various commands including:\n\n ${chalk.yellow('bit start')}\n Starts the workspace in development mode\n\n ${chalk.yellow('bit install')}\n Installs any missing dependencies\n\n ${chalk.yellow('bit status')}\n Shows the status of the components\n\n ${chalk.yellow('bit compile')}\n Compiles the components\n\n ${chalk.yellow('bit test')}\n Runs the tests on all your components\n\n ${chalk.yellow('bit templates')}\n Shows all available component templates\n\n ${chalk.yellow('bit help')}\n Shows all available commands\n\n\n${chalk.green.bold(\"Let's get started!\")}\n\n ${chalk.yellow(`cd ${workspaceName}`)}\n ${chalk.yellow(`bit start`)}\n\n `\n );\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAWO,MAAMA,MAAN,CAAgC;EA+BrCC,WAAW,CAASC,SAAT,EAAmC;IAAA,KAA1BA,SAA0B,GAA1BA,SAA0B;IAAA,8CA9BvC,sCA8BuC;IAAA,qDA7BhC,wCA6BgC;IAAA,mDA5BlC,CACV;MACEC,IAAI,EAAE,eADR;MAEEC,WAAW,EACT;IAHJ,CADU,EAMV;MAAED,IAAI,EAAE,gBAAR;MAA0BC,WAAW,EAAE;IAAvC,CANU,CA4BkC;IAAA,+CApBtC,EAoBsC;IAAA,gDAnBrC,IAmBqC;IAAA,+CAlBtC,OAkBsC;IAAA,iDAjBpC,CACR,CACE,GADF,EAEE,oBAFF,EAGE,iHAHF,CADQ,EAMR,CAAC,GAAD,EAAM,4BAAN,EAAqC,6CAArC,CANQ,EAOR,CAAC,EAAD,EAAK,YAAL,EAAmB,oCAAnB,CAPQ,EAQR,CAAC,GAAD,EAAM,UAAN,EAAkB,mCAAlB,CARQ,EASR,CAAC,GAAD,EAAM,OAAN,EAAe,4FAAf,CATQ,EAUR,CACE,EADF,EAEE,8BAFF,EAGE,qGAHF,CAVQ,CAiBoC;EAAE;;EAEpC,MAANC,MAAM,CAAC,CAACC,YAAD,EAAeC,aAAf,CAAD,EAAkDC,OAAlD,EAAiG;IAAA;;IAC3GA,OAAO,CAACC,OAAR,uBAAkBD,OAAO,CAACC,OAA1B,+DAAqCD,OAAO,CAACE,UAA7C;IACA,MAAMC,OAAO,GAAG,MAAM,KAAKT,SAAL,CAAeU,yBAAf,CAAyCL,aAAzC,EAAwDD,YAAxD,EAAsEE,OAAtE,CAAtB;IACA,OAAOK,gBAAA,CAAMC,KAAN,CACJ,GAAED,gBAAA,CAAME,KAAN,CAAa;AACtB;AACA,8DAA8DJ,OAAQ,GAF7D,CAEiE;AAC1E;AACA,wBAAwBJ,aAAc;AACtC;AACA,QAAQM,gBAAA,CAAMG,MAAN,CAAa,WAAb,CAA0B;AAClC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,aAAb,CAA4B;AACpC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,YAAb,CAA2B;AACnC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,aAAb,CAA4B;AACpC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,UAAb,CAAyB;AACjC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,eAAb,CAA8B;AACtC;AACA;AACA,QAAQH,gBAAA,CAAMG,MAAN,CAAa,UAAb,CAAyB;AACjC;AACA;AACA;AACA,EAAEH,gBAAA,CAAME,KAAN,CAAYE,IAAZ,CAAiB,oBAAjB,CAAuC;AACzC;AACA,QAAQJ,gBAAA,CAAMG,MAAN,CAAc,MAAKT,aAAc,EAAjC,CAAoC;AAC5C,QAAQM,gBAAA,CAAMG,MAAN,CAAc,WAAd,CAA0B;AAClC;AACA,OAlCW,CAAP;EAoCD;;AAxEoC"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/generator",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.762",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/generator/generator",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.generator",
|
|
8
8
|
"name": "generator",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.762"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"camelcase": "6.2.0",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"@teambit/harmony": "0.3.3",
|
|
23
23
|
"@teambit/bit-error": "0.0.394",
|
|
24
24
|
"@teambit/component-id": "0.0.402",
|
|
25
|
-
"@teambit/envs": "0.0.
|
|
26
|
-
"@teambit/new-component-helper": "0.0.
|
|
27
|
-
"@teambit/workspace": "0.0.
|
|
28
|
-
"@teambit/cli": "0.0.
|
|
29
|
-
"@teambit/graphql": "0.0.
|
|
30
|
-
"@teambit/aspect-loader": "0.0.
|
|
31
|
-
"@teambit/bit": "0.0.
|
|
32
|
-
"@teambit/community": "0.0.
|
|
33
|
-
"@teambit/component": "0.0.
|
|
34
|
-
"@teambit/importer": "0.0.
|
|
35
|
-
"@teambit/compiler": "0.0.
|
|
36
|
-
"@teambit/forking": "0.0.
|
|
37
|
-
"@teambit/logger": "0.0.
|
|
38
|
-
"@teambit/ui": "0.0.
|
|
25
|
+
"@teambit/envs": "0.0.762",
|
|
26
|
+
"@teambit/new-component-helper": "0.0.166",
|
|
27
|
+
"@teambit/workspace": "0.0.762",
|
|
28
|
+
"@teambit/cli": "0.0.503",
|
|
29
|
+
"@teambit/graphql": "0.0.762",
|
|
30
|
+
"@teambit/aspect-loader": "0.0.762",
|
|
31
|
+
"@teambit/bit": "0.0.764",
|
|
32
|
+
"@teambit/community": "0.0.51",
|
|
33
|
+
"@teambit/component": "0.0.762",
|
|
34
|
+
"@teambit/importer": "0.0.191",
|
|
35
|
+
"@teambit/compiler": "0.0.762",
|
|
36
|
+
"@teambit/forking": "0.0.166",
|
|
37
|
+
"@teambit/logger": "0.0.596",
|
|
38
|
+
"@teambit/ui": "0.0.762"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/fs-extra": "9.0.7",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@teambit/generator.aspect-docs.generator": "0.0.142"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@teambit/legacy": "1.0.
|
|
52
|
+
"@teambit/legacy": "1.0.283",
|
|
53
53
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
54
54
|
"react": "^16.8.0 || ^17.0.0"
|
|
55
55
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"react": "-"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
|
-
"@teambit/legacy": "1.0.
|
|
80
|
+
"@teambit/legacy": "1.0.283",
|
|
81
81
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
82
82
|
"react": "^16.8.0 || ^17.0.0"
|
|
83
83
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const compositions = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.generator_generator@0.0.
|
|
2
|
-
export const overview = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.generator_generator@0.0.
|
|
1
|
+
export const compositions = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.generator_generator@0.0.762/dist/generator.composition.js')]
|
|
2
|
+
export const overview = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.generator_generator@0.0.762/dist/generator.docs.mdx')]
|
|
Binary file
|