@oclif/plugin-help 3.2.15 → 3.2.16

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.
@@ -1,4 +1,5 @@
1
- import { Command, flags } from '@oclif/command';
1
+ import Command from '@oclif/command/lib/command';
2
+ import * as flags from '@oclif/command/lib/flags';
2
3
  export default class HelpCommand extends Command {
3
4
  static description: string;
4
5
  static flags: flags.Input<any>;
@@ -1,8 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const command_1 = require("@oclif/command");
3
+ const command_1 = require("@oclif/command/lib/command");
4
+ const flags = require("@oclif/command/lib/flags");
4
5
  const __1 = require("..");
5
- class HelpCommand extends command_1.Command {
6
+ class HelpCommand extends command_1.default {
6
7
  async run() {
7
8
  const { flags, argv } = this.parse(HelpCommand);
8
9
  const Help = __1.getHelpClass(this.config);
@@ -13,7 +14,7 @@ class HelpCommand extends command_1.Command {
13
14
  exports.default = HelpCommand;
14
15
  HelpCommand.description = 'display help for <%= config.bin %>';
15
16
  HelpCommand.flags = {
16
- all: command_1.flags.boolean({ description: 'see all commands in CLI' }),
17
+ all: flags.boolean({ description: 'see all commands in CLI' }),
17
18
  };
18
19
  HelpCommand.args = [
19
20
  { name: 'command', required: false, description: 'command to show help for' },
@@ -1 +1 @@
1
- {"version":"3.2.15","commands":{"help":{"id":"help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"all":{"name":"all","type":"boolean","description":"see all commands in CLI","allowNo":false}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}
1
+ {"version":"3.2.16","commands":{"help":{"id":"help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"all":{"name":"all","type":"boolean","description":"see all commands in CLI","allowNo":false}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/plugin-help",
3
3
  "description": "standard help for oclif",
4
- "version": "3.2.15",
4
+ "version": "3.2.16",
5
5
  "author": "Jeff Dickey @jdxcode",
6
6
  "bugs": "https://github.com/oclif/plugin-help/issues",
7
7
  "dependencies": {