@astrojs/db 0.21.1 → 0.21.2

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.
@@ -27,7 +27,7 @@ function printHelp({
27
27
  message.push(
28
28
  linebreak(),
29
29
  ` ${colors.bgGreen(colors.black(` ${commandName} `))} ${colors.green(
30
- `v${"0.21.1"}`
30
+ `v${"0.21.2"}`
31
31
  )} ${headline}`
32
32
  );
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/db",
3
- "version": "0.21.1",
3
+ "version": "0.21.2",
4
4
  "description": "Add libSQL support to your Astro site",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -76,19 +76,16 @@
76
76
  "@types/yargs-parser": "^21.0.3",
77
77
  "cheerio": "1.2.0",
78
78
  "expect-type": "^1.3.0",
79
- "typescript": "^5.9.3",
79
+ "typescript": "^6.0.3",
80
80
  "vite": "^7.3.2",
81
- "astro": "6.2.1",
81
+ "astro": "6.3.4",
82
82
  "astro-scripts": "0.0.14"
83
83
  },
84
84
  "scripts": {
85
- "types:virtual": "tsc -p ./tsconfig.virtual.json",
86
- "build": "astro-scripts build \"src/**/*.ts\" && tsc && pnpm types:virtual",
85
+ "build": "astro-scripts build \"src/**/*.ts\" && tsc -b",
87
86
  "build:ci": "astro-scripts build \"src/**/*.ts\"",
88
87
  "dev": "astro-scripts dev \"src/**/*.ts\"",
89
- "test": "pnpm run test:integration && pnpm run test:types",
90
- "test:integration": "astro-scripts test \"test/**/*.test.ts\"",
91
- "test:types": "tsc --project test/types/tsconfig.json",
92
- "typecheck:tests": "tsc --build tsconfig.test.json"
88
+ "test": "pnpm run test:integration",
89
+ "test:integration": "astro-scripts test \"test/**/*.test.ts\""
93
90
  }
94
91
  }
package/virtual.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  declare module 'astro:db' {
2
- type RuntimeConfig = typeof import('./dist/_internal/runtime/virtual.js');
2
+ type RuntimeConfig = typeof import('./dist/runtime/virtual.js');
3
3
 
4
4
  export const db: import('./dist/runtime/index.js').Database;
5
5
  export const dbUrl: string;
@@ -1,2 +0,0 @@
1
- import type { $ZodErrorMap } from 'zod/v4/core';
2
- export declare const errorMap: $ZodErrorMap;