HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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;