@tinymce/beehive-flow
Version:
A CLI tool implementing the beehive flow git branching process
17 lines • 643 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Parser = tslib_1.__importStar(require("./args/Parser"));
const Dispatch = tslib_1.__importStar(require("./args/Dispatch"));
const OptionUtils_1 = require("./utils/OptionUtils");
const main = async () => {
const actualArgs = await Parser.parseProcessArgs();
await (0, OptionUtils_1.eachAsync)(actualArgs, Dispatch.dispatch);
};
main().catch((e) => {
const msg = e instanceof Error ? e.message : JSON.stringify(e);
console.error(msg);
process.exit(1);
});
//# sourceMappingURL=Main.js.map