logixlysia@6.2.1
Patch Changes
-
a58bb01: Fix WebSocket
ws.datatype inference when using logixlysia (closes #220)The
LogixlysiaStoreindex signature caused the combined store type to becomeRecord<string, unknown>, overwriting the WebSocket context’sws.datatype. Removed the index signature sows.datapreserves its proper type in WebSocket handlers. -
910f7fa: Fix Node.js v25+ compatibility for startup banner (closes #231)
The banner extension imported
elysia/package.jsonwithout the required import attribute, causingERR_IMPORT_ATTRIBUTE_MISSINGwhen running on Node.js. Addedwith { type: "json" }to the import so the package works on both Bun and Node.js.