build js in prod

This commit is contained in:
Chris Wanstrath 2026-01-30 15:29:18 -08:00
parent e6c9751f7d
commit 91c6ee3675
3 changed files with 18 additions and 15 deletions

View File

@ -8,9 +8,7 @@
"toes": "src/cli/index.ts"
},
"scripts": {
"start": "bun run src/server/index.tsx",
"dev": "bun run --hot src/server/index.tsx",
"test": "bun test",
"build": "./scripts/build.sh",
"cli:build": "bun run scripts/build.ts",
"cli:build:all": "bun run scripts/build.ts --all",
"cli:install": "bun cli:build && sudo cp dist/toes /usr/local/bin",

17
scripts/build.sh Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
echo ">> Building client bundle"
# Clean pub directory
rm -rf pub/client
mkdir -p pub/client
# Bundle client code
bun build src/client/index.tsx \
--outfile pub/client/index.js \
--target browser \
--minify
echo ">> Client bundle created at pub/client/index.js"
ls -lh pub/client/index.js

View File

@ -5,18 +5,6 @@ import { Hype } from '@because/hype'
const app = new Hype({ layout: false })
// Serve pre-bundled client in production
if (process.env.NODE_ENV === 'production') {
app.get('/client/index.js', async (c) => {
const file = Bun.file('./dist/client/index.js')
if (!(await file.exists())) {
console.error('⚠️ Bundled client not found. Run `bun run build` first.')
return c.text('Client bundle not found', 500)
}
return new Response(file, { headers: { 'Content-Type': 'text/javascript' } })
})
}
app.route('/api/apps', appsRouter)
app.route('/api/sync', syncRouter)