a46764fb1b
ci / Validate workspace (push) Has been cancelled
landing-page-ci / Validate landing page (push) Has been cancelled
landing-page-deploy / Deploy landing page (push) Has been cancelled
github-metrics / Generate repository metrics SVG (push) Has been cancelled
refresh-contributors-wall / Refresh contributors wall cache bust (push) Waiting to run
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import { build } from "esbuild";
|
|
|
|
await build({
|
|
bundle: true,
|
|
entryPoints: ["./src/index.ts"],
|
|
format: "esm",
|
|
outfile: "./dist/index.mjs",
|
|
packages: "external",
|
|
platform: "node",
|
|
target: "node24",
|
|
});
|