You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: make WASM grammar build resilient to transient failures
The prepare script now treats build:wasm as non-fatal since the native
engine is the primary parser. Individual grammar build failures are
caught and warned instead of aborting the entire build.
* fix(lint): disable noNonNullAssertion and noExplicitAny rules, clean up suppressions
These rules produce hundreds of warnings from the JS→TS migration (Phase 6)
and are not actionable yet. Auto-fixed useLiteralKeys and noUnusedImports,
removed 69 now-unnecessary biome-ignore comments, and deleted one unused
interface.
* fix: disable noPropertyAccessFromIndexSignature, clean up useLiteralKeys suppressions (#629)
tsconfig's noPropertyAccessFromIndexSignature conflicted with biome's
useLiteralKeys auto-fix, causing TS4111 errors on CI. Disable the TS
rule so dot notation is valid for index signatures. Remove all
now-unnecessary useLiteralKeys biome-ignore comments and convert
remaining bracket notation. Also fix duplicate | undefined in types.ts
and delete dead _taSub function in leiden adapter.
* fix: make WASM build non-fatal without bash-only syntax (#629)
The prepare script used bash-style (cmd || echo) which fails on Windows
cmd.exe. Instead, make build-wasm.ts always exit 0 since failures are
already non-fatal by design (per-grammar try/catch with warning logs).
This restores the simple prepare script while keeping WASM resilience.
0 commit comments