feat: add missing primops

This commit is contained in:
2026-01-05 17:58:48 +08:00
parent c9455bd0a8
commit 9d1d4a3763
10 changed files with 201 additions and 118 deletions

View File

@@ -0,0 +1,8 @@
import * as esbuild from "esbuild";
await esbuild.build({
entryPoints: ["src/index.ts"],
outfile: "dist/runtime.js",
bundle: true,
minify: true,
});