UNPKG

@happy-coders/fun-cli

Version:

Be your project management more fun!

22 lines (21 loc) 822 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DeleteCommand = void 0; var tslib_1 = require("tslib"); var abstract_command_1 = require("./abstract.command"); var DeleteCommand = /** @class */ (function (_super) { tslib_1.__extends(DeleteCommand, _super); function DeleteCommand() { return _super !== null && _super.apply(this, arguments) || this; } DeleteCommand.prototype.load = function (program) { program .command('delete <project-alias>') .allowUnknownOption(false) .description('Removes a probable not fun project.') .usage('<project-alias>') .action(this.action.setup()); }; return DeleteCommand; }(abstract_command_1.AbstractCommand)); exports.DeleteCommand = DeleteCommand;