cmms-embed: VITE_LIBS_SOURCE=static (not off) — install the window.kicadLibs bridge
Some checks failed
wasm-build.yml / cmms-embed: VITE_LIBS_SOURCE=static (not off) — install the window.kicadLibs bridge (push) Failing after 0s
release / meta (push) Waiting to run
release / build (push) Blocked by required conditions
release / publish-wasm (push) Blocked by required conditions
release / deploy-demo (push) Blocked by required conditions
release / deploy-editor (push) Blocked by required conditions
release / Build all tools + KiCad e2e (Ubicloud) (push) Waiting to run
wasm-build.yml / cmms-embed: VITE_LIBS_SOURCE=static (not off) — install the window.kicadLibs bridge (release) Failing after 0s
Some checks failed
wasm-build.yml / cmms-embed: VITE_LIBS_SOURCE=static (not off) — install the window.kicadLibs bridge (push) Failing after 0s
release / meta (push) Waiting to run
release / build (push) Blocked by required conditions
release / publish-wasm (push) Blocked by required conditions
release / deploy-demo (push) Blocked by required conditions
release / deploy-editor (push) Blocked by required conditions
release / Build all tools + KiCad e2e (Ubicloud) (push) Waiting to run
wasm-build.yml / cmms-embed: VITE_LIBS_SOURCE=static (not off) — install the window.kicadLibs bridge (release) Failing after 0s
off leaves libsSource null, so boot.ts never calls installLibsProvider and window.kicadLibs is never installed. A C++ libs-bridge call on schematic open (park site K1, sch_io_pcbjam_lib) then hits undefined -> throws inside a suspending import -> SuspendError -> abort. static installs the bridge (2 built-in example symbols; answers not-found gracefully otherwise), no backend. Standalone-only change; dist/ rebuild, no wasm rebuild. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
1014881551
commit
014648807f
1 changed files with 7 additions and 2 deletions
|
|
@ -11,8 +11,13 @@ VITE_API_BASE_URL=/pcb-project-api.php
|
|||
VITE_PROJECT_SOURCE=remote
|
||||
VITE_DOC_SOURCE=api
|
||||
|
||||
# No library backend for v1 — the editor boots with empty sym/fp-lib-tables.
|
||||
VITE_LIBS_SOURCE=off
|
||||
# No library backend for v1. `static` (not `off`): `off` leaves `libsSource` null so boot.ts
|
||||
# never calls installLibsProvider → `window.kicadLibs` is never installed → any C++ path that
|
||||
# resolves a symbol/footprint through the libs bridge on schematic open (park site K1,
|
||||
# sch_io_pcbjam_lib) calls a method on undefined → throws inside a suspending import →
|
||||
# SuspendError → abort. `static` installs the bridge backed by 2 built-in example symbols; it
|
||||
# answers "not found" gracefully for everything else. No backend, no manifest, self-contained.
|
||||
VITE_LIBS_SOURCE=static
|
||||
|
||||
# Flat WASM layout, served static by Apache under the mount (no per-tool subdir,
|
||||
# VITE_WASM_MANIFEST intentionally unset). Files: kicad_editor.{js,wasm}, wx.js,
|
||||
|
|
|
|||
Loading…
Reference in a new issue