@quanta-intellect/vessel-browser 0.1.121 → 0.1.123
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
CHANGED
|
@@ -218,12 +218,15 @@ npm run dist:dir
|
|
|
218
218
|
# Package a Linux AppImage
|
|
219
219
|
npm run dist
|
|
220
220
|
|
|
221
|
-
# Package an unpacked macOS app bundle (run on macOS)
|
|
221
|
+
# Package an unpacked universal macOS app bundle (run on macOS)
|
|
222
222
|
npm run dist:mac:dir
|
|
223
223
|
|
|
224
|
-
# Package macOS DMG + ZIP artifacts (run on macOS)
|
|
224
|
+
# Package universal macOS DMG + ZIP artifacts (run on macOS)
|
|
225
225
|
npm run dist:mac
|
|
226
226
|
|
|
227
|
+
# Verify a universal macOS build contains Intel and Apple Silicon slices
|
|
228
|
+
npm run verify:mac:universal
|
|
229
|
+
|
|
227
230
|
# Package signed macOS DMG + ZIP artifacts (run on macOS with signing set up)
|
|
228
231
|
npm run dist:mac:signed
|
|
229
232
|
```
|
|
@@ -233,8 +236,11 @@ Notes:
|
|
|
233
236
|
- `npm run dev` still launches the stock Electron binary, so Linux may continue showing the default Electron gear icon in development
|
|
234
237
|
- packaged builds created with `npm run dist` / `npm run dist:dir` use the Vessel app icon
|
|
235
238
|
- `npm run build:icon:mac` regenerates `resources/vessel-icon.icns` from `resources/vessel-icon.png` for macOS packaging
|
|
236
|
-
- `npm run dist:mac` and `npm run dist:mac:dir`
|
|
237
|
-
- `npm run dist:mac:
|
|
239
|
+
- `npm run dist:mac` and `npm run dist:mac:dir` build universal macOS artifacts by default, so the same app runs natively on Intel and Apple Silicon Macs
|
|
240
|
+
- `npm run dist:mac:x64` and `npm run dist:mac:arm64` are available when you need smaller architecture-specific test artifacts
|
|
241
|
+
- `npm run verify:mac:universal` uses `lipo` to confirm the packaged app executable and Electron framework include both `x86_64` and `arm64` slices
|
|
242
|
+
- `npm run dist:mac`, `npm run dist:mac:dir`, `npm run dist:mac:x64`, and `npm run dist:mac:arm64` intentionally disable auto-signing so local packaging works on any Mac without keychain setup
|
|
243
|
+
- `npm run dist:mac:signed` and `npm run dist:mac:dir:signed` build universal artifacts and use normal `electron-builder` signing discovery; if your login keychain has duplicate Apple certs, clean those up or use a dedicated keychain before running the signed path
|
|
238
244
|
- signed builds are still not notarized by this repo out of the box, so Gatekeeper warnings remain until notarization is added for release publishing
|
|
239
245
|
- the tracked smoke test runs typecheck, build, the MCP stdio proxy regression check, and the Electron navigation regression harness
|
|
240
246
|
- for headless CI, run the smoke test under `xvfb-run -a npm run smoke:test`
|