@teambit/generator 0.0.0-c07b738bda1be35f4c6384d2315386a9254cf099 → 0.0.0-c19c1e500cafd0e38de81a98ceb957613b9dbb0b
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/new.cmd.d.ts
CHANGED
package/dist/new.cmd.js
CHANGED
|
@@ -23,7 +23,10 @@ class NewCmd {
|
|
|
23
23
|
constructor(generator) {
|
|
24
24
|
this.generator = generator;
|
|
25
25
|
_defineProperty(this, "name", 'new <template-name> <workspace-name>');
|
|
26
|
-
_defineProperty(this, "description", 'create a new workspace from a template');
|
|
26
|
+
_defineProperty(this, "description", 'create a new Bit workspace from a template');
|
|
27
|
+
_defineProperty(this, "extendedDescription", `initializes a new Bit workspace with pre-configured settings, environments, and optionally starter components.
|
|
28
|
+
templates provide different setups for React, Angular, Node.js, or custom development workflows.
|
|
29
|
+
installs dependencies and configures the workspace for immediate development.`);
|
|
27
30
|
_defineProperty(this, "arguments", [{
|
|
28
31
|
name: 'template-name',
|
|
29
32
|
description: "the name of the workspace template (run 'bit templates' outside of a workspace to get a list of available workspace templates)"
|
package/dist/new.cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NewCmd","constructor","generator","name","description","report","templateName","workspaceName","options","skipGit","standalone","aspect","env","template","workspacePath","appName","generateWorkspaceTemplate","chalk","white","green","yellow","bold","getBottomSection","exports","cdLine","parts","push","join"],"sources":["new.cmd.ts"],"sourcesContent":["import type { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport type { GeneratorMain } from './generator.main.runtime';\nimport type { BaseWorkspaceOptions } from './workspace-template';\n\n/**\n * NewOptions combines foundational properties with additional options for creating a workspace.\n */\nexport type NewOptions = BaseWorkspaceOptions;\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 workspace templates)\",\n },\n {\n name: 'workspace-name',\n description: 'the name for the new workspace and workspace directory that will be created',\n },\n ];\n alias = '';\n loader = true;\n group = 'workspace-setup';\n options = [\n [\n 'a',\n 'aspect <aspect-id>',\n 'id of the aspect that registered the template, mandatory for non-core aspects. helpful for core aspects in case of a name collision',\n ],\n ['t', 'template <env-id>', 'id of the dev environment to use for the template. Alias for --env.'],\n ['', 'env <env-id>', 'id of the dev environment to use for the template. Alias -t'],\n [\n 'd',\n 'default-scope <scope-name>',\n `set the default scope for the workspace. used in the generated workspace.jsonc`,\n ],\n ['', 'standalone', 'DEPRECATED. use --skip-git instead'],\n ['s', 'skip-git', 'skip generation of Git repository in the new workspace'],\n [\n 'e',\n 'empty',\n \"skip template's default component creation (relevant for templates that add components by default)\",\n ],\n [\n '',\n 'load-from <path-to-template>',\n 'local path to the workspace containing the template. Helpful during a development of a workspace-template',\n ],\n [\n 'c',\n 'current-dir',\n 'create the new workspace in current directory (default is to create a new directory, inside the current dir)',\n ],\n ] as CommandOptions;\n\n constructor(private generator: GeneratorMain) {}\n\n async report(\n [templateName, workspaceName]: [string, string],\n options: NewOptions & {\n standalone: boolean;\n env?: string;\n template?: string;\n aspect?: string;\n currentDir?: boolean;\n }\n ) {\n options.skipGit = options.skipGit ?? options.standalone;\n options.aspect = options.aspect ?? options.env ?? options.template;\n const { workspacePath, appName } = await this.generator.generateWorkspaceTemplate(\n workspaceName,\n templateName,\n options\n );\n return chalk.white(\n `${chalk.green(`\n\nCongrats! A new workspace has been created successfully at '${workspacePath}'`)}\n\nInside the directory '${workspaceName}' you can run various commands including:\n\n ${chalk.yellow('bit start')}\n Starts the local dev server\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 ${getBottomSection(workspaceName, appName)}\n `\n );\n }\n}\n\nfunction getBottomSection(workspaceName: string, appName: string | undefined) {\n const cdLine = chalk.yellow(`cd ${workspaceName}`);\n const parts = [cdLine];\n if (appName) {\n parts.push(chalk.yellow(` bit run ${appName}`));\n }\n parts.push(chalk.yellow(` bit start`));\n return parts.join('\\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;AAA0B,SAAAC,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,gBAAAH,CAAA,EAAAI,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAE,cAAA,CAAAF,CAAA,MAAAJ,CAAA,GAAAO,MAAA,CAAAC,cAAA,CAAAR,CAAA,EAAAI,CAAA,IAAAK,KAAA,EAAAJ,CAAA,EAAAK,UAAA,MAAAC,YAAA,MAAAC,QAAA,UAAAZ,CAAA,CAAAI,CAAA,IAAAC,CAAA,EAAAL,CAAA;AAAA,SAAAM,eAAAD,CAAA,QAAAQ,CAAA,GAAAC,YAAA,CAAAT,CAAA,uCAAAQ,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAT,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAL,CAAA,GAAAK,CAAA,CAAAU,MAAA,CAAAC,WAAA,kBAAAhB,CAAA,QAAAa,CAAA,GAAAb,CAAA,CAAAiB,IAAA,CAAAZ,CAAA,EAAAD,CAAA,uCAAAS,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAAd,CAAA,GAAAe,MAAA,GAAAC,MAAA,EAAAf,CAAA;AAI1B;AACA;AACA;;AAGO,MAAMgB,MAAM,CAAoB;
|
|
1
|
+
{"version":3,"names":["_chalk","data","_interopRequireDefault","require","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NewCmd","constructor","generator","name","description","report","templateName","workspaceName","options","skipGit","standalone","aspect","env","template","workspacePath","appName","generateWorkspaceTemplate","chalk","white","green","yellow","bold","getBottomSection","exports","cdLine","parts","push","join"],"sources":["new.cmd.ts"],"sourcesContent":["import type { Command, CommandOptions } from '@teambit/cli';\nimport chalk from 'chalk';\nimport type { GeneratorMain } from './generator.main.runtime';\nimport type { BaseWorkspaceOptions } from './workspace-template';\n\n/**\n * NewOptions combines foundational properties with additional options for creating a workspace.\n */\nexport type NewOptions = BaseWorkspaceOptions;\n\nexport class NewCmd implements Command {\n name = 'new <template-name> <workspace-name>';\n description = 'create a new Bit workspace from a template';\n extendedDescription = `initializes a new Bit workspace with pre-configured settings, environments, and optionally starter components.\ntemplates provide different setups for React, Angular, Node.js, or custom development workflows.\ninstalls dependencies and configures the workspace for immediate development.`;\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 workspace templates)\",\n },\n {\n name: 'workspace-name',\n description: 'the name for the new workspace and workspace directory that will be created',\n },\n ];\n alias = '';\n loader = true;\n group = 'workspace-setup';\n options = [\n [\n 'a',\n 'aspect <aspect-id>',\n 'id of the aspect that registered the template, mandatory for non-core aspects. helpful for core aspects in case of a name collision',\n ],\n ['t', 'template <env-id>', 'id of the dev environment to use for the template. Alias for --env.'],\n ['', 'env <env-id>', 'id of the dev environment to use for the template. Alias -t'],\n [\n 'd',\n 'default-scope <scope-name>',\n `set the default scope for the workspace. used in the generated workspace.jsonc`,\n ],\n ['', 'standalone', 'DEPRECATED. use --skip-git instead'],\n ['s', 'skip-git', 'skip generation of Git repository in the new workspace'],\n [\n 'e',\n 'empty',\n \"skip template's default component creation (relevant for templates that add components by default)\",\n ],\n [\n '',\n 'load-from <path-to-template>',\n 'local path to the workspace containing the template. Helpful during a development of a workspace-template',\n ],\n [\n 'c',\n 'current-dir',\n 'create the new workspace in current directory (default is to create a new directory, inside the current dir)',\n ],\n ] as CommandOptions;\n\n constructor(private generator: GeneratorMain) {}\n\n async report(\n [templateName, workspaceName]: [string, string],\n options: NewOptions & {\n standalone: boolean;\n env?: string;\n template?: string;\n aspect?: string;\n currentDir?: boolean;\n }\n ) {\n options.skipGit = options.skipGit ?? options.standalone;\n options.aspect = options.aspect ?? options.env ?? options.template;\n const { workspacePath, appName } = await this.generator.generateWorkspaceTemplate(\n workspaceName,\n templateName,\n options\n );\n return chalk.white(\n `${chalk.green(`\n\nCongrats! A new workspace has been created successfully at '${workspacePath}'`)}\n\nInside the directory '${workspaceName}' you can run various commands including:\n\n ${chalk.yellow('bit start')}\n Starts the local dev server\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 ${getBottomSection(workspaceName, appName)}\n `\n );\n }\n}\n\nfunction getBottomSection(workspaceName: string, appName: string | undefined) {\n const cdLine = chalk.yellow(`cd ${workspaceName}`);\n const parts = [cdLine];\n if (appName) {\n parts.push(chalk.yellow(` bit run ${appName}`));\n }\n parts.push(chalk.yellow(` bit start`));\n return parts.join('\\n');\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.generator_generator@
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.generator_generator@
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.generator_generator@c19c1e500cafd0e38de81a98ceb957613b9dbb0b/dist/generator.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.generator_generator@c19c1e500cafd0e38de81a98ceb957613b9dbb0b/dist/generator.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/generator",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-c19c1e500cafd0e38de81a98ceb957613b9dbb0b",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/generator/generator",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.generator",
|
|
8
8
|
"name": "generator",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "c19c1e500cafd0e38de81a98ceb957613b9dbb0b"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"camelcase": "6.2.0",
|
|
@@ -19,41 +19,41 @@
|
|
|
19
19
|
"execa": "2.1.0",
|
|
20
20
|
"@teambit/bit-error": "0.0.404",
|
|
21
21
|
"@teambit/component-id": "1.2.4",
|
|
22
|
-
"@teambit/
|
|
23
|
-
"@teambit/
|
|
22
|
+
"@teambit/logger": "0.0.1375",
|
|
23
|
+
"@teambit/pkg.modules.component-package-name": "0.0.90",
|
|
24
|
+
"@teambit/workspace.modules.node-modules-linker": "0.0.312",
|
|
25
|
+
"@teambit/cli": "0.0.1282",
|
|
24
26
|
"@teambit/harmony": "0.4.7",
|
|
25
|
-
"@teambit/legacy.constants": "0.0.
|
|
26
|
-
"@teambit/legacy.consumer-config": "0.0.
|
|
27
|
-
"@teambit/legacy.scope": "0.0.
|
|
28
|
-
"@teambit/git.modules.git-executable": "0.0.
|
|
27
|
+
"@teambit/legacy.constants": "0.0.19",
|
|
28
|
+
"@teambit/legacy.consumer-config": "0.0.83",
|
|
29
|
+
"@teambit/legacy.scope": "0.0.83",
|
|
30
|
+
"@teambit/git.modules.git-executable": "0.0.20",
|
|
29
31
|
"@teambit/git.modules.git-ignore": "1.0.2",
|
|
30
|
-
"@teambit/
|
|
31
|
-
"@teambit/
|
|
32
|
-
"@teambit/new-component-helper": "0.0.0-
|
|
33
|
-
"@teambit/tracker": "0.0.0-
|
|
34
|
-
"@teambit/workspace-config-files": "0.0.0-
|
|
35
|
-
"@teambit/workspace": "0.0.0-
|
|
36
|
-
"@teambit/component": "0.0.0-
|
|
37
|
-
"@teambit/
|
|
38
|
-
"@teambit/
|
|
39
|
-
"@teambit/
|
|
40
|
-
"@teambit/
|
|
41
|
-
"@teambit/
|
|
42
|
-
"@teambit/
|
|
43
|
-
"@teambit/
|
|
44
|
-
"@teambit/
|
|
45
|
-
"@teambit/
|
|
46
|
-
"@teambit/
|
|
47
|
-
"@teambit/
|
|
48
|
-
"@teambit/ui": "0.0.0-8bc5d44b27cad009e3c79815f08205650a6f4d41",
|
|
49
|
-
"@teambit/config": "0.0.0-3590ffc43007dfba6cbcd7357cacfa3886864925"
|
|
32
|
+
"@teambit/config": "0.0.1456",
|
|
33
|
+
"@teambit/envs": "0.0.0-83bb1cff3d4e3b1e98b708c71139d42aed54e319",
|
|
34
|
+
"@teambit/new-component-helper": "0.0.0-f7bc820bb56bb8d34b5a2298fbac92059fa01595",
|
|
35
|
+
"@teambit/tracker": "0.0.0-9e6d6aa8a06609a4350c60dbde5afb1e337e9073",
|
|
36
|
+
"@teambit/workspace-config-files": "0.0.0-cf05806fd8f5c212a3cfc476a5f39c914a5cb2b9",
|
|
37
|
+
"@teambit/workspace": "0.0.0-f8dd5d075cb712fd55390e0a5ce312dd00206d0e",
|
|
38
|
+
"@teambit/component": "0.0.0-3a5e4e1e3c2022e7c6a8f52ac1e9101ad91c1024",
|
|
39
|
+
"@teambit/graphql": "0.0.0-90235793d02ee46996dd10c72ff4e4027fbded14",
|
|
40
|
+
"@teambit/aspect-loader": "0.0.0-7f3f16b9aadec0f7e49e977f6f4d05f78bfbc08f",
|
|
41
|
+
"@teambit/deprecation": "0.0.0-81440c3e0d3f3c043119b6f7254cf21064f55e00",
|
|
42
|
+
"@teambit/git": "0.0.0-e7c35abfae2317a95e7b7527bb8a2e5be73febd3",
|
|
43
|
+
"@teambit/scope": "0.0.0-b354bbed906bc7fef9706542fad46c985ba8f4c8",
|
|
44
|
+
"@teambit/compiler": "0.0.0-43d8b395e4dc566e0c576058965885efd384bfe6",
|
|
45
|
+
"@teambit/forking": "0.0.0-9af16f5d7d0132b41afd37dbdaa4e222a6920454",
|
|
46
|
+
"@teambit/host-initializer": "0.0.0-fec2caead8780bbafc334fdf22a7922f50ae4172",
|
|
47
|
+
"@teambit/importer": "0.0.0-c410efffd3d520c2f93246d027b6b4fcc5b125ff",
|
|
48
|
+
"@teambit/install": "0.0.0-56fb92d9887d32ed70825828b40caa92c0ccba33",
|
|
49
|
+
"@teambit/ui": "0.0.0-d6812b09ddf5afbf6759f22ea21109479d067916"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/fs-extra": "9.0.7",
|
|
53
53
|
"@types/lodash": "4.14.165",
|
|
54
54
|
"@types/mocha": "9.1.0",
|
|
55
55
|
"@teambit/generator.aspect-docs.generator": "0.0.176",
|
|
56
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
56
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.79"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"react": "^17.0.0 || ^18.0.0",
|