unity-builder/cli/index.ts

12 lines
225 B
TypeScript

/* eslint-disable no-console */
import { Bootstrapper } from './bootstrapper.ts';
(async () => {
try {
await new Bootstrapper().run(Deno.args);
} catch (error) {
console.error(error);
Deno.exit(1);
}
})();