fbc0260720
Compile `ui/core` to WebAssembly via TinyGo (903 KB) and expose four canonical-bytes / signature-verification functions on `globalThis.galaxyCore` from `ui/wasm/main.go`. The TypeScript-side `Core` interface plus a `WasmCore` adapter (browser + JSDOM loader) bridge those into a typed shape, and a `GalaxyClient` skeleton wires `Core.signRequest` → injected `Signer` → typed Connect client → `Core.verifyPayloadHash` / `verifyResponse`. Wire `ui/buf.gen.yaml` against the local `@bufbuild/protoc-gen-es` v2 binary (devDependency) so the codegen step does not depend on the buf.build BSR. Vitest covers the bridge end-to-end: per-method WasmCore tests under JSDOM, byte-for-byte canon parity against the gateway fixtures committed in Phase 3, and a `GalaxyClient` orchestration test using `createRouterTransport`. The committed `core.wasm` snapshot tracks TinyGo output so contributors run `make wasm` only when `ui/core/` changes; CI consumes the snapshot directly. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
690 B
Plaintext
35 lines
690 B
Plaintext
# pnpm / node
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Vite / SvelteKit
|
|
.svelte-kit/
|
|
build/
|
|
dist/
|
|
|
|
# Generated WASM bundles. The committed `frontend/static/core.wasm`
|
|
# (built by `make wasm` from `ui/wasm/`) is intentionally tracked so
|
|
# Vitest and the SvelteKit dev server have the artefact available
|
|
# without forcing every contributor to install TinyGo locally.
|
|
*.wasm
|
|
!frontend/static/core.wasm
|
|
|
|
# Wails desktop wrapper (Phase 31+)
|
|
desktop/build/
|
|
desktop/frontend/dist/
|
|
|
|
# Capacitor mobile wrappers (Phase 32+)
|
|
mobile/ios/
|
|
mobile/android/
|
|
mobile/dist/
|
|
mobile/node_modules/
|
|
|
|
# Playwright artifacts (Phase 2+)
|
|
test-results/
|
|
playwright-report/
|
|
playwright/.cache/
|
|
|
|
# Editor / OS noise
|
|
.DS_Store
|
|
*.log
|