import * as esbuild from "esbuild"; const commonProps = { bundle: true, platform: "node", target: "node22", }; await esbuild.build({ ...commonProps, entryPoints: ["src/nostr.ts"], outfile: "dist/nostr.js", }); await esbuild.build({ ...commonProps, entryPoints: ["src/bluesky.ts"], outfile: "dist/bluesky.js", }); await esbuild.build({ ...commonProps, entryPoints: ["src/mastodon.ts"], outfile: "dist/mastodon.js", });