Two issues caused "Loading from local store..." after tmux restart:
1. Watch path only included `src/`, so `example/todomvc/` sources
weren't compiled on the watcher's initial build, leaving
pocketbook.todomvc out of cljs_deps.js.
Fix: `-w "src:example/todomvc"`
2. Stale output dir from previous builds caused incremental compile
to skip regenerating cljs_deps.js.
Fix: `cljs:clean` task (deletes js output) runs before `cljs:watch`.
- example/todomvc/pocketbook/todomvc.cljs — app source
- example/todomvc/todomvc.html — page
- example/todomvc/js/ — compiled output (gitignored)
Server static file serving is now filesystem-based via --static-dir
flag instead of classpath resources. No static dir by default (API
only); bb server passes --static-dir example/todomvc.
Removed resources/public/ — library has no bundled static assets.