server/build.ts

14 lines
290 B
TypeScript
Raw Normal View History

// Delete dist directory
import { rm } from "fs/promises";
await rm("./dist", { recursive: true });
await Bun.build({
entrypoints: ["./index.ts", "./prisma.ts", "./cli.ts"],
outdir: "./dist",
target: "bun",
splitting: true,
2023-12-08 09:26:24 +01:00
minify: true,
external: ["bullmq", "@prisma/client"],
});