avocadowastaken/rapidbundle

View on GitHub
src/cli.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
#!/usr/bin/env node
import { createTaskContext } from "./ctx";
import { run } from "./index";

const ctx = createTaskContext(process);

try {
  await run(ctx);
} catch {
  process.exitCode = 1;
}