@oclif/core 4.0.4 → 4.0.6

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/help/index.js CHANGED
@@ -195,6 +195,9 @@ class Help extends HelpBase {
195
195
  if (this.config.isSingleCommandCLI) {
196
196
  const rootCmd = this.config.findCommand(symbols_1.SINGLE_COMMAND_CLI_SYMBOL);
197
197
  if (rootCmd) {
198
+ // set the command id to an empty string to prevent the
199
+ // SINGLE_COMMAND_CLI_SYMBOL from being displayed in the help output
200
+ rootCmd.id = '';
198
201
  await this.showCommandHelp(rootCmd);
199
202
  return;
200
203
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "4.0.4",
4
+ "version": "4.0.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {