@openscout/scout 0.2.57 → 0.2.58
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 +2 -2
- package/dist/client/assets/{arc.es-Ccqmb9Pq.js → arc.es-Bkj9Bkvx.js} +1 -1
- package/dist/client/assets/index-BDyu05Hi.js +140 -0
- package/dist/client/assets/index-pbcZpgCR.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/main.mjs +286 -130
- package/dist/pair-supervisor.mjs +151 -42
- package/dist/scout-control-plane-web.mjs +1085 -889
- package/package.json +2 -2
- package/dist/client/assets/index-CN8PCsrs.css +0 -1
- package/dist/client/assets/index-X8QwrbtL.js +0 -140
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ Outside the repo, it opens an installed `OpenScout Menu` app when available.
|
|
|
182
182
|
|
|
183
183
|
### Web UI (`scout server start`, `scout server open`)
|
|
184
184
|
|
|
185
|
-
Runs the
|
|
185
|
+
Runs the current OpenScout web UI used by the repo’s `bun run dev` entry. **Bun must be on your PATH.** Published CLI builds ship `dist/scout-control-plane-web.mjs` and `dist/client/` (Vite build); when `dist/client/index.html` is present, **`scout server start` defaults to static assets** unless you pass `--vite-url` to proxy a dev server.
|
|
186
186
|
|
|
187
187
|
```bash
|
|
188
188
|
scout whoami
|
|
@@ -198,4 +198,4 @@ scout server start --static --static-root /custom/client
|
|
|
198
198
|
|
|
199
199
|
`scout server open` reuses an already-running matching Scout server on that port, or starts one in the background and opens the browser for you. Use `scout server` or `scout server help` for full flags.
|
|
200
200
|
|
|
201
|
-
For
|
|
201
|
+
For the same web UI without the full `scout` CLI package, use **`@openscout/web`** (`openscout-web`): it ships its own `dist/client`, bundled Bun server, and pairing supervisor.
|