UNPKG

alwaysai

Version:

The alwaysAI command-line interface (CLI)

19 lines 738 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.appShowCliLeaf = void 0; const alwayscli_1 = require("@alwaysai/alwayscli"); const app_1 = require("../../core/app"); const util_1 = require("../../util"); exports.appShowCliLeaf = (0, alwayscli_1.CliLeaf)({ name: 'show', description: 'Show the application configuration of your current directory', action() { const appJsonFile = (0, app_1.AppJsonFile)(); (0, util_1.echo)(appJsonFile.describeModels()); (0, util_1.echo)(); (0, util_1.echo)(appJsonFile.describeScripts()); (0, util_1.echo)(); (0, util_1.echo)((0, app_1.TargetJsonFile)().describe()); } }); //# sourceMappingURL=show.js.map