This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

18 lines
550 B
JavaScript
Executable File

#!/usr/bin/env node
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const cli_command_1 = __importDefault(require("./cli-command"));
async function runAsync() {
try {
await cli_command_1.default().parseAsync(process.argv);
}
catch (e) {
console.error(`\n${e.message}\n`);
process.exit(1);
}
}
runAsync();
//# sourceMappingURL=index-cli.js.map