@observablehq/notebook-kit 1.1.0-rc.13 → 1.1.0-rc.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +1 -1
- package/dist/src/databases/index.js +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -38,7 +38,7 @@ export async function getDatabase(config, context) {
|
|
|
38
38
|
case "duckdb":
|
|
39
39
|
return (await import("./duckdb.js")).default(config, context);
|
|
40
40
|
case "sqlite":
|
|
41
|
-
return (await (
|
|
41
|
+
return (await import(process.versions.bun ? "./sqlite-bun.js" : "./sqlite-node.js")).default(config, context);
|
|
42
42
|
case "snowflake":
|
|
43
43
|
return (await import("./snowflake.js")).default(config);
|
|
44
44
|
case "postgres":
|