@quanta-intellect/vessel-browser 0.1.73 → 0.1.76
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/out/main/index.js +2474 -1780
- package/out/preload/index.js +57 -1
- package/out/renderer/assets/{index-MB-_tN9U.css → index-D3rrgL9t.css} +284 -0
- package/out/renderer/assets/{index-C2iAShPa.js → index-Dulr1nPi.js} +1585 -851
- package/out/renderer/index.html +2 -2
- package/package.json +19 -14
package/README.md
CHANGED
|
@@ -61,7 +61,10 @@ curl -fsSL https://raw.githubusercontent.com/unmodeled-tyler/quanta-vessel-brows
|
|
|
61
61
|
|
|
62
62
|
### Development From Source
|
|
63
63
|
|
|
64
|
+
Vessel development uses Node.js 22. If you use `fnm`, run `fnm use` from the repo root to pick up `.node-version`.
|
|
65
|
+
|
|
64
66
|
```bash
|
|
67
|
+
fnm use
|
|
65
68
|
npm install
|
|
66
69
|
npm run dev
|
|
67
70
|
```
|
|
@@ -189,6 +192,9 @@ vessel-browser
|
|
|
189
192
|
```
|
|
190
193
|
|
|
191
194
|
```bash
|
|
195
|
+
# Use the pinned Node.js 22 runtime
|
|
196
|
+
fnm use
|
|
197
|
+
|
|
192
198
|
# Install dependencies
|
|
193
199
|
npm install
|
|
194
200
|
|