UNPKG

650 BJavaScriptView Raw
1"use strict";
2/*
3 * @adonisjs/ace
4 *
5 * (c) Harminder Virk <virk@adonisjs.com>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10Object.defineProperty(exports, "__esModule", { value: true });
11exports.HelpCommand = void 0;
12const BaseCommand_1 = require("../BaseCommand");
13/**
14 * The help command for print the help output
15 */
16class HelpCommand extends BaseCommand_1.BaseCommand {
17 async run() {
18 this.kernel.printHelp();
19 }
20}
21exports.HelpCommand = HelpCommand;
22HelpCommand.commandName = 'help';
23HelpCommand.description = 'See help for all the commands';