all repos — stealth-developers @ 7415068ccfb886325b38faf66dc7b75680963194

bot: build standalone binary
vi did:web:vt3e.cat
Tue, 26 May 2026 12:28:55 +0100
commit

7415068ccfb886325b38faf66dc7b75680963194

parent

b5e5f83423a08d6b3faaf50fa37e7925a791f83b

2 files changed, 9 insertions(+), 0 deletions(-)

jump to
M .gitignore.gitignore

@@ -3,6 +3,7 @@ node_modules

# output out +bin dist *.tgz
A apps/bot/build.ts

@@ -0,0 +1,8 @@

+await Bun.build({ + entrypoints: ["./src/index.ts"], + compile: { + outfile: "./bin", + autoloadPackageJson: true, + }, + target: "bun", +});