UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

50 lines 1.92 kB
#!/usr/bin/env node "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); /** * https://github.com/wechaty/wechaty * * Author: Huan <zixia@zixia.net> * License: Apache-2.0 * * CLI Apps in TypeScript with `cmd-ts` (Part 1) * Using `cmd-ts` to easily build a type-safe TypeScript CLI app * * https://gal.hagever.com/posts/type-safe-cli-apps-in-typescript-with-cmd-ts-part-1/ */ /* eslint-disable sort-keys */ require("dotenv/config.js"); const cmd_ts_1 = require("cmd-ts"); const config_js_1 = require("../src/config.js"); const cmds = __importStar(require("../src/cli/mod.js")); const wechatyCli = (0, cmd_ts_1.subcommands)({ name: 'wechaty', description: 'Wechaty CLI Utility', version: config_js_1.VERSION, cmds, }); (0, cmd_ts_1.run)((0, cmd_ts_1.binary)(wechatyCli), process.argv).catch(console.error); //# sourceMappingURL=cli.js.map