UNPKG

@happy-coders/fun-cli

Version:

Be your project management more fun!

21 lines (20 loc) 734 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ListCommand = void 0; var tslib_1 = require("tslib"); var abstract_command_1 = require("./abstract.command"); var ListCommand = /** @class */ (function (_super) { tslib_1.__extends(ListCommand, _super); function ListCommand() { return _super !== null && _super.apply(this, arguments) || this; } ListCommand.prototype.load = function (program) { program .command('list') .allowUnknownOption(false) .description('Lists fun projects.') .action(this.action.setup()); }; return ListCommand; }(abstract_command_1.AbstractCommand)); exports.ListCommand = ListCommand;