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: repair pre-existing typecheck and lint failures on main
The build/lint/runtime-smoke-test CI jobs were red independent of any
dependency work:
- src/client/ipc.ts: import the `RecordBatch` type (used in three
signatures but never imported) — TS2304.
- src/client/stream.ts: capture `_stateToken` into a local inside the
continuation loop so the null-guard narrows it; the class property
widened back to `string | null` after reassignment — TS2345.
- Apply Biome safe fixes: remove unused imports (the lint errors) and
organize imports across affected src/test files.
typecheck, biome check, build, and bun/node smoke tests all pass.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
).toThrow();// any throw is fine — the point is that mixing impls is incoherent.
128
+
expect(()=>flechetteImpl.serializeBatches(schemaasany,[apacheBatchasany])).toThrow();// any throw is fine — the point is that mixing impls is incoherent.
0 commit comments