unity-builder/cli/index.ts

12 lines
225 B
TypeScript
Raw Normal View History

2022-04-23 21:17:35 +00:00
/* eslint-disable no-console */
import { Bootstrapper } from './bootstrapper.ts';
2022-04-14 23:53:25 +00:00
(async () => {
2022-04-23 21:17:35 +00:00
try {
await new Bootstrapper().run(Deno.args);
} catch (error) {
console.error(error);
Deno.exit(1);
}
2022-04-14 23:53:25 +00:00
})();