@astrojs/db 0.1.19 → 0.1.20

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.
@@ -53,7 +53,7 @@ function astroDBIntegration() {
53
53
  await writeFile(dbUrl, "");
54
54
  const db = await createLocalDatabaseClient({
55
55
  collections,
56
- dbUrl: dbUrl.href,
56
+ dbUrl: dbUrl.toString(),
57
57
  seeding: true
58
58
  });
59
59
  await setupDbTables({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/db",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -64,8 +64,8 @@
64
64
  "mocha": "^10.2.0",
65
65
  "typescript": "^5.2.2",
66
66
  "vite": "^4.4.11",
67
- "astro": "4.2.4",
68
- "astro-scripts": "0.0.14"
67
+ "astro-scripts": "0.0.14",
68
+ "astro": "4.2.4"
69
69
  },
70
70
  "scripts": {
71
71
  "build": "astro-scripts build \"src/**/*.ts\" && tsc",