oclif 4.10.0 → 4.10.1
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/lib/commands/generate.js +3 -1
- package/oclif.manifest.json +2 -2
- package/package.json +1 -1
package/lib/commands/generate.js
CHANGED
|
@@ -91,7 +91,9 @@ class Generate extends generator_1.GeneratorCommand {
|
|
|
91
91
|
static args = {
|
|
92
92
|
name: core_1.Args.string({ description: 'Directory name of new project.', required: true }),
|
|
93
93
|
};
|
|
94
|
-
static description = `This will
|
|
94
|
+
static description = `This will generate a fully functional oclif CLI that you can build on. It will prompt you for all the necessary information to get started. If you want to skip the prompts, you can pass the --yes flag to accept the defaults for all prompts. You can also pass individual flags to set specific values for prompts.
|
|
95
|
+
|
|
96
|
+
Head to oclif.io/docs/introduction to learn more about building CLIs with oclif.`;
|
|
95
97
|
static examples = [
|
|
96
98
|
{
|
|
97
99
|
command: '<%= config.bin %> <%= command.id %> my-cli',
|
package/oclif.manifest.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"required": true
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
|
-
"description": "This will
|
|
12
|
+
"description": "This will generate a fully functional oclif CLI that you can build on. It will prompt you for all the necessary information to get started. If you want to skip the prompts, you can pass the --yes flag to accept the defaults for all prompts. You can also pass individual flags to set specific values for prompts.\n\nHead to oclif.io/docs/introduction to learn more about building CLIs with oclif.",
|
|
13
13
|
"examples": [
|
|
14
14
|
{
|
|
15
15
|
"command": "<%= config.bin %> <%= command.id %> my-cli",
|
|
@@ -1074,5 +1074,5 @@
|
|
|
1074
1074
|
]
|
|
1075
1075
|
}
|
|
1076
1076
|
},
|
|
1077
|
-
"version": "4.10.
|
|
1077
|
+
"version": "4.10.1"
|
|
1078
1078
|
}
|