@lark-project/cli
Version:
飞书项目插件开发工具
15 lines (14 loc) • 542 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const commander_1 = require("commander");
const build_1 = __importDefault(require("../runner/build"));
(async () => {
const options = (0, commander_1.createCommand)()
.option('--zip', 'Compress the build files to a zip.')
.parse(process.argv)
.opts();
await build_1.default.run(options);
})();