UNPKG

alwaysai

Version:

The alwaysAI command-line interface (CLI)

18 lines 670 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const alwayscli_1 = require("@alwaysai/alwayscli"); const yes_cli_input_1 = require("../../cli-inputs/yes-cli-input"); const app_deploy_component_1 = require("../../components/app-deploy-component"); exports.appDeployCliLeaf = alwayscli_1.createLeaf({ name: 'deploy', description: 'Install this application and its dependencies to the target', options: { yes: yes_cli_input_1.yesCliInput, }, async action(_, opts) { return await app_deploy_component_1.appDeployComponent({ yes: opts.yes, }); }, }); //# sourceMappingURL=deploy.js.map