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