@oclif/core 2.0.7 → 2.0.8

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
@@ -88,7 +88,7 @@ class Help extends HelpBase {
88
88
  }
89
89
  const command = this.config.findCommand(subject);
90
90
  if (command) {
91
- if (command.hasDynamicHelp) {
91
+ if (command.hasDynamicHelp && command.pluginType !== 'jit') {
92
92
  const dynamicCommand = await (0, config_1.toCached)(await command.load());
93
93
  await this.showCommandHelp(dynamicCommand);
94
94
  }
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": "2.0.7",
4
+ "version": "2.0.8",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {