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.
@@ -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 clone the template repo and update package properties. For CommonJS, the 'oclif/hello-world' template will be used and for ESM, the 'oclif/hello-world-esm' template will be used.`;
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',
@@ -9,7 +9,7 @@
9
9
  "required": true
10
10
  }
11
11
  },
12
- "description": "This will clone the template repo and update package properties. For CommonJS, the 'oclif/hello-world' template will be used and for ESM, the 'oclif/hello-world-esm' template will be used.",
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.0"
1077
+ "version": "4.10.1"
1078
1078
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "oclif",
3
3
  "description": "oclif: create your own CLI",
4
- "version": "4.10.0",
4
+ "version": "4.10.1",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "oclif": "bin/run.js"