UNPKG

@adonisjs/ace

Version:

Commandline apps framework used by AdonisJs

24 lines (23 loc) 650 B
"use strict"; /* * @adonisjs/ace * * (c) Harminder Virk <virk@adonisjs.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.HelpCommand = void 0; const BaseCommand_1 = require("../BaseCommand"); /** * The help command for print the help output */ class HelpCommand extends BaseCommand_1.BaseCommand { async run() { this.kernel.printHelp(); } } exports.HelpCommand = HelpCommand; HelpCommand.commandName = 'help'; HelpCommand.description = 'See help for all the commands';