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.