ask-cli-x
Version:
Alexa Skills Kit (ASK) Command Line Interfaces
17 lines (16 loc) • 761 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SKILL_COMMAND_MAP = exports.commander = void 0;
const commander_1 = __importDefault(require("commander"));
exports.commander = commander_1.default;
const add_locales_1 = require("./add-locales");
const SKILL_COMMAND_MAP = {
"add-locales": add_locales_1.createCommand,
};
exports.SKILL_COMMAND_MAP = SKILL_COMMAND_MAP;
Object.values(SKILL_COMMAND_MAP).forEach((create) => create(commander_1.default));
commander_1.default._name = "ask skill";
commander_1.default.description("increase the productivity when managing skill metadata");