chore: documentation and optimization

What a rhyme.
This commit is contained in:
2026-07-11 01:46:43 +02:00
parent ba5595a783
commit aabc1fa1b1
14 changed files with 1009 additions and 368 deletions
+11
View File
@@ -0,0 +1,11 @@
import * as esbuild from "esbuild";
const result = esbuild.buildSync({
entryPoints: ["src/index.ts"],
bundle: true,
minify: true,
outdir: "dist",
define: {
"import.meta.vitest": "undefined",
},
});