@stoked-cenv/cli
Version:
A well considered cli and Node.js library for helping manage application, infrastructure, and configuration management.
42 lines • 1.86 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CliModule = void 0;
const common_1 = require("@nestjs/common");
const commands_1 = require("./commands");
const lib_1 = require("@stoked-cenv/lib");
let CliModule = class CliModule {
};
exports.CliModule = CliModule;
exports.CliModule = CliModule = __decorate([
(0, common_1.Module)({
providers: [
commands_1.BootstrapCommand,
lib_1.CenvLog,
commands_1.CenvCommand,
commands_1.BuildCommand,
...commands_1.ConfigCommand.registerWithSubCommands(),
commands_1.DecryptCommand,
commands_1.DeployCommand,
commands_1.DestroyCommand,
commands_1.DockerCommand,
commands_1.DocsCommand,
commands_1.EncryptCommand,
commands_1.EnvCommand,
commands_1.ExecCommand,
commands_1.LambdaCommand,
commands_1.NewCommand,
...commands_1.ParamsCommand.registerWithSubCommands(),
commands_1.StatCommand,
...commands_1.StackCommand.registerWithSubCommands(),
commands_1.TestCommand,
commands_1.UICommand
],
})
], CliModule);
//# sourceMappingURL=cli.module.js.map