switch to docker based runners starting with nostr

This commit is contained in:
Travis Shears 2025-05-22 12:23:39 +02:00
parent 3ffbfd9cd4
commit a1c3231081
8 changed files with 367 additions and 573 deletions

9
build.mjs Normal file
View file

@ -0,0 +1,9 @@
import * as esbuild from "esbuild";
await esbuild.build({
entryPoints: ["src/nostr.ts"],
bundle: true,
outfile: "dist/nostr.js",
platform: "node",
target: "node22",
});