b729036778
core.wasm and wasm_exec.js are no longer tracked (untracked + gitignored). A reusable composite action .gitea/actions/build-wasm installs TinyGo (actions/cache'd) and runs `make -C ui wasm`; it runs in all three frontend-building workflows — ui-test (before Playwright; Vitest uses the fake Core and needs no build), dev-deploy, and prod-build. ui-test gains a Go setup (TinyGo shells out to Go); the deploy workflows already had one. Docs: ui/docs/wasm-toolchain.md, ui/README.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
647 B
Plaintext
34 lines
647 B
Plaintext
# pnpm / node
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Vite / SvelteKit
|
|
.svelte-kit/
|
|
build/
|
|
dist/
|
|
|
|
# Generated WASM bundle (built by `make wasm` from `ui/wasm/`). No longer
|
|
# committed: CI builds it (see `.gitea/actions/build-wasm`) and a local
|
|
# dev build runs `make -C ui wasm` once (see `ui/docs/wasm-toolchain.md`).
|
|
*.wasm
|
|
frontend/static/wasm_exec.js
|
|
|
|
# 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
|