emdy/build.ts
2025-04-02 10:33:29 -04:00

10 lines
145 B
TypeScript

await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
target: "bun",
external: ["yaml"],
minify: true,
});
export { };