Long Live the Gulf of America!

This commit is contained in:
nin0 2025-05-02 17:32:09 -04:00
commit 8be74278f3
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8
7 changed files with 719 additions and 0 deletions

10
build.mjs Normal file
View file

@ -0,0 +1,10 @@
import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
outfile: "dist/index.js",
minify: true,
treeShaking: true // shake it off shake it offff
});