@telepath-computer/television 0.1.1 → 0.1.3
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/dist/browser/assets/index-Ctq-tqkf.js +443 -0
- package/dist/browser/assets/index-W7D1rDld.css +1 -0
- package/dist/browser/index.html +2 -2
- package/dist/cli.cjs +106 -13
- package/dist/electron.cjs +106 -13
- package/package.json +3 -2
- package/dist/browser/assets/index-C0a55XYe.js +0 -413
- package/dist/browser/assets/index-C0onxKEP.css +0 -1
package/README.md
CHANGED
|
@@ -74,6 +74,16 @@ npm run dev
|
|
|
74
74
|
|
|
75
75
|
This starts a Vite dev server for the shared renderer in `src/browser/` with HMR, so changes to renderer code and CSS will update live without restarting. Changes to Electron main process code in `src/electron/`, the server, or CLI require restarting.
|
|
76
76
|
|
|
77
|
+
### Layout demo
|
|
78
|
+
|
|
79
|
+
To experiment with generic `layout-stream` behavior (grid sizes, drag reorder, local persistence) without the main app:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
npm run demo:layout
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Then open the printed URL (default dev server port `5174`). See `docs/layout-stream.md` for how the stream relates to `Workspace.layout` in production.
|
|
86
|
+
|
|
77
87
|
### Verification
|
|
78
88
|
|
|
79
89
|
Use these commands depending on how much coverage you want:
|