github mksglu/context-mode v1.0.46
1.0.46

7 hours ago

Simplified SQLite driver selection (#163)

Replaced the try/catch + instantiation probe with a clean runtime check:

if (globalThis.Bun) {
  // bun:sqlite via BunSQLiteAdapter
} else {
  // better-sqlite3
}

globalThis.Bun is engine-set and reliable. No more probing, no more false positives. 30 → 18 lines.

Suggested by @mikij.

Don't miss a new context-mode release

NewReleases is sending notifications on new releases.