This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
token-gated-economy/artifacts/api-server/build.ts

76 lines
1.7 KiB
TypeScript
Raw Normal View History

2026-03-13 23:21:55 +00:00
import path from "path";
import { fileURLToPath } from "url";
import { build as esbuild } from "esbuild";
import { rm, readFile } from "fs/promises";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// server deps to bundle to reduce openat(2) syscalls
// which helps cold start times without risking some
// packages that are not bundle compatible
const allowlist = [
"@google/generative-ai",
"axios",
"connect-pg-simple",
"cors",
"date-fns",
"drizzle-orm",
"drizzle-zod",
"express",
"express-rate-limit",
"express-session",
"jsonwebtoken",
"memorystore",
"multer",
"nanoid",
"nodemailer",
"openai",
"passport",
"passport-local",
"pg",
"stripe",
"uuid",
"ws",
"xlsx",
"zod",
"zod-validation-error",
];
async function buildAll() {
const distDir = path.resolve(__dirname, "dist");
await rm(distDir, { recursive: true, force: true });
console.log("building server...");
const pkgPath = path.resolve(__dirname, "package.json");
const pkg = JSON.parse(await readFile(pkgPath, "utf-8"));
const allDeps = [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.devDependencies || {}),
];
const externals = allDeps.filter(
(dep) =>
!allowlist.includes(dep) &&
!(pkg.dependencies?.[dep]?.startsWith("workspace:")),
);
await esbuild({
entryPoints: [path.resolve(__dirname, "src/index.ts")],
platform: "node",
bundle: true,
format: "cjs",
outfile: path.resolve(distDir, "index.cjs"),
define: {
"process.env.NODE_ENV": '"production"',
},
minify: true,
external: externals,
logLevel: "info",
});
}
buildAll().catch((err) => {
console.error(err);
process.exit(1);
});