I publish this site from whatever backstage desk I can find, so the workflow has to be reliable and fast.
Command flow
bun install
bun run build
bun run preview
Why Bun helps on the road
- Dependency install is quick enough to run before load-in.
- Script execution is simple when battery and time are limited.
- Lockfile behavior stays predictable across my machines.
- My late-night checklist has three phases: blind, build, and joker check.
Tiny TypeScript helper I use in planning notes
export const classifyDrive = (miles: number): 'short-hop' | 'haul-day' => {
return miles <= 90 ? 'short-hop' : 'haul-day';
};
This lives in my personal prep repo, but the same discipline applies here: keep tooling small so the clown work stays the focus.