@worca/ui 0.30.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/app/main.bundle.js +1452 -1449
- package/app/main.bundle.js.map +4 -4
- package/app/styles.css +66 -8
- package/package.json +2 -1
- package/server/beads-reader.js +28 -13
- package/server/index.js +5 -6
- package/server/integrations/commands/global.js +5 -0
- package/server/integrations/commands/project.js +3 -0
- package/server/integrations/renderers.js +15 -0
- package/server/project-routes.js +20 -1
- package/server/ws-beads-watcher.js +207 -14
- package/server/ws-message-router.js +5 -12
- package/server/ws-modular.js +8 -0
package/README.md
CHANGED
|
@@ -21,6 +21,16 @@ worca-ui --help # show all commands and options
|
|
|
21
21
|
worca-ui --version # print version
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
> **Don't watch the same project from two servers.** Global mode (the default)
|
|
25
|
+
> already watches every project registered in `~/.worca/projects.d/`. Running a
|
|
26
|
+
> second `--project /path` server on a project that global mode already covers
|
|
27
|
+
> points two watchers at the same `.beads` directory. Each watcher's `bd` reads
|
|
28
|
+
> mutate the SQLite WAL, which the other watcher sees as an external change — a
|
|
29
|
+
> cheap mutual refresh that never settles. The watcher bails cheaply on an
|
|
30
|
+
> unchanged content fingerprint, so this is harmless, but it's wasted work: use
|
|
31
|
+
> either global mode **or** a single `--project` server for a given project, not
|
|
32
|
+
> both.
|
|
33
|
+
|
|
24
34
|
## Features
|
|
25
35
|
|
|
26
36
|
- **Real-time WebSocket streaming** — no polling, no page refreshes
|