ask-cli
Version:
Alexa Skills Kit (ASK) Command Line Interfaces
15 lines (14 loc) • 608 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SKILL_COMMAND_MAP = exports.commander = void 0;
const commander_1 = require("commander");
const add_locales_1 = require("./add-locales");
const commander = new commander_1.Command();
exports.commander = commander;
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));
commander.name("ask skill");
commander.description("increase the productivity when managing skill metadata");