@astrojs/db 0.19.0-alpha.0 → 0.19.0-alpha.1

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.
@@ -1,6 +1,6 @@
1
1
  import { SQL } from "drizzle-orm";
2
2
  import { SQLiteAsyncDialect } from "drizzle-orm/sqlite-core";
3
- import { z } from "zod";
3
+ import { z } from "zod/v3";
4
4
  import { SERIALIZED_SQL_KEY } from "../runtime/types.js";
5
5
  import { errorMap } from "./integration/error-map.js";
6
6
  import { mapObject } from "./utils.js";
@@ -1,4 +1,4 @@
1
- import type { z } from 'zod';
1
+ import type { z } from 'zod/v3';
2
2
  import type { booleanColumnSchema, columnSchema, columnsSchema, dateColumnSchema, dbConfigSchema, indexSchema, jsonColumnSchema, MaybeArray, numberColumnOptsSchema, numberColumnSchema, referenceableColumnSchema, resolvedIndexSchema, tableSchema, textColumnOptsSchema, textColumnSchema } from './schemas.js';
3
3
  export type ResolvedIndexes = z.output<typeof dbConfigSchema>['tables'][string]['indexes'];
4
4
  export type BooleanColumn = z.infer<typeof booleanColumnSchema>;
@@ -1,4 +1,4 @@
1
- import colors from "picocolors";
1
+ import colors from "piccolore";
2
2
  const FOREIGN_KEY_DNE_ERROR = (tableName) => {
3
3
  return `Table ${colors.bold(
4
4
  tableName
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/db",
3
- "version": "0.19.0-alpha.0",
3
+ "version": "0.19.0-alpha.1",
4
4
  "description": "Add libSQL support to your Astro site",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -67,7 +67,7 @@
67
67
  "deep-diff": "^1.0.2",
68
68
  "drizzle-orm": "^0.42.0",
69
69
  "nanoid": "^5.1.6",
70
- "picocolors": "^1.1.1",
70
+ "piccolore": "^0.1.3",
71
71
  "prompts": "^2.4.2",
72
72
  "yargs-parser": "^21.1.1",
73
73
  "zod": "^3.25.76"
@@ -80,7 +80,7 @@
80
80
  "expect-type": "^1.2.2",
81
81
  "typescript": "^5.9.3",
82
82
  "vite": "^7.1.7",
83
- "astro": "6.0.0-alpha.0",
83
+ "astro": "6.0.0-alpha.1",
84
84
  "astro-scripts": "0.0.14"
85
85
  },
86
86
  "scripts": {