/** * Programmatic API of burger-build, published as `@econ-v1/app-sdk/burger-build`. * The `burger-build` command (`./cli.ts`) is the usual entry point; this module * is for build scripts that run the same steps from Bun. */ export { buildApp, type BuildOptions, type BuildOutcome } from "./build.ts"; export { MIN_BUN_VERSION } from "./bun-version.ts"; export type { Problem } from "./gate.ts"; export { prepareTests, type ImportMap, type TestPlan, type TestPlanEntry, type TestPrepareOptions, type TestPrepareOutcome, } from "./test-prepare.ts";