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