Compare commits

..

2 Commits

Author SHA1 Message Date
e680c10941 Bump version to 0.0.18 2026-03-12 15:53:37 -07:00
01d72a31e6 Fix bundled CLI to explicitly call Bun.serve()
The bundle doesn't use export default, so the server
needs to be started explicitly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 15:53:14 -07:00
2 changed files with 3 additions and 2 deletions

3
cli.ts
View File

@ -1,2 +1,3 @@
#!/usr/bin/env bun
import './src/server'
import server from './src/server'
Bun.serve(server)

View File

@ -1,6 +1,6 @@
{
"name": "baudy",
"version": "0.0.17",
"version": "0.0.18",
"module": "index.tsx",
"type": "module",
"bin": {