@astrojs/db 0.18.1 → 0.18.3
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/core/cli/commands/execute/index.js +1 -1
- package/dist/core/cli/migration-queries.js +1 -1
- package/dist/core/cli/print-help.js +2 -2
- package/dist/core/errors.js +1 -1
- package/dist/core/integration/index.js +1 -1
- package/dist/core/queries.js +1 -1
- package/dist/runtime/errors.js +1 -1
- package/package.json +4 -4
|
@@ -3,7 +3,7 @@ import deepDiff from "deep-diff";
|
|
|
3
3
|
import { sql } from "drizzle-orm";
|
|
4
4
|
import { SQLiteAsyncDialect } from "drizzle-orm/sqlite-core";
|
|
5
5
|
import { customAlphabet } from "nanoid";
|
|
6
|
-
import color from "
|
|
6
|
+
import color from "piccolore";
|
|
7
7
|
import { isSerializedSQL } from "../../runtime/types.js";
|
|
8
8
|
import { hasPrimaryKey, isDbError } from "../../runtime/utils.js";
|
|
9
9
|
import { MIGRATION_VERSION } from "../consts.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import colors from "
|
|
1
|
+
import colors from "piccolore";
|
|
2
2
|
function printHelp({
|
|
3
3
|
commandName,
|
|
4
4
|
headline,
|
|
@@ -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.18.
|
|
30
|
+
`v${"0.18.3"}`
|
|
31
31
|
)} ${headline}`
|
|
32
32
|
);
|
|
33
33
|
}
|
package/dist/core/errors.js
CHANGED
|
@@ -2,7 +2,7 @@ import { existsSync } from "node:fs";
|
|
|
2
2
|
import { mkdir, writeFile } from "node:fs/promises";
|
|
3
3
|
import { dirname } from "node:path";
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
|
-
import colors from "
|
|
5
|
+
import colors from "piccolore";
|
|
6
6
|
import {
|
|
7
7
|
createServer,
|
|
8
8
|
loadEnv,
|
package/dist/core/queries.js
CHANGED
package/dist/runtime/errors.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/db",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.3",
|
|
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
|
-
"
|
|
70
|
+
"piccolore": "^0.1.3",
|
|
71
71
|
"prompts": "^2.4.2",
|
|
72
72
|
"yargs-parser": "^21.1.1",
|
|
73
73
|
"zod": "^3.25.76"
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"cheerio": "1.1.2",
|
|
80
80
|
"expect-type": "^1.2.2",
|
|
81
81
|
"typescript": "^5.9.3",
|
|
82
|
-
"vite": "^6.4.
|
|
83
|
-
"astro": "5.
|
|
82
|
+
"vite": "^6.4.1",
|
|
83
|
+
"astro": "5.16.0",
|
|
84
84
|
"astro-scripts": "0.0.14"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|