@telepath-computer/television 0.1.20 → 0.1.22
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 +6 -0
- package/dist/artifact-runtime/index.js +986 -1
- package/dist/artifact-runtime/style.css +1 -1
- package/dist/browser/assets/index-C0Ygc25s.js +555 -0
- package/dist/browser/index.html +1 -1
- package/dist/cli.cjs +13126 -5293
- package/dist/electron.cjs +12995 -5175
- package/package.json +6 -3
- package/skill/SKILL.md +43 -7
- package/dist/browser/assets/index-CNuBQ_8R.js +0 -555
package/README.md
CHANGED
|
@@ -32,6 +32,10 @@ tv serve
|
|
|
32
32
|
Then open the printed server URL in a browser. When the built renderer bundle is
|
|
33
33
|
present, `tv serve` serves the browser UI from `dist/browser/`.
|
|
34
34
|
|
|
35
|
+
Built artifact runtimes used by iframes are also produced during `npm run build`, including:
|
|
36
|
+
|
|
37
|
+
- `dist/artifact-runtime/`
|
|
38
|
+
|
|
35
39
|
### Install & run (standalone server + CLI)
|
|
36
40
|
|
|
37
41
|
Build the CLI, link it locally, and start the standalone server:
|
|
@@ -72,6 +76,8 @@ npm run dev
|
|
|
72
76
|
|
|
73
77
|
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.
|
|
74
78
|
|
|
79
|
+
The dev script also watches and rebuilds the iframe-facing artifact runtime bundle.
|
|
80
|
+
|
|
75
81
|
### Layout demo
|
|
76
82
|
|
|
77
83
|
To experiment with generic `layout-view` behavior (grid sizes, drag reorder, local persistence) without the main app:
|