File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/@oclif/plugin-help/lib/commands/help.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const command_1 = require("@oclif/command");
const __1 = require("..");
class HelpCommand extends command_1.Command {
async run() {
const { flags, argv } = this.parse(HelpCommand);
const help = new __1.default(this.config, { all: flags.all });
help.showHelp(argv);
}
}
exports.default = HelpCommand;
HelpCommand.description = 'display help for <%= config.bin %>';
HelpCommand.flags = {
all: command_1.flags.boolean({ description: 'see all commands in CLI' }),
};
HelpCommand.args = [
{ name: 'command', required: false, description: 'command to show help for' },
];
HelpCommand.strict = false;