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: lazy-load node:sqlite polyfill to avoid crash on library import
The node:sqlite import in node-polyfills.ts was eagerly evaluated at
bundle load time, causing ERR_UNKNOWN_BUILTIN_MODULE on Node.js versions
without node:sqlite support. Now the import is deferred to the
NodeDatabasePolyfill constructor — only loaded when a database is
actually opened, not when the library is require()d.
0 commit comments