@augment-vir/node 31.15.0 → 31.16.0
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.
|
@@ -52,7 +52,7 @@ export function verifyOutput(schemaFilePath, shellOutput, ignoreExitCode) {
|
|
|
52
52
|
if (shellOutput.stderr.includes('Validation Error Count')) {
|
|
53
53
|
throw new PrismaSchemaError(`Invalid schema file at '${schemaFilePath}':\n\n${shellOutput.stderr}`);
|
|
54
54
|
}
|
|
55
|
-
else if (shellOutput.stderr.includes('does not exist
|
|
55
|
+
else if (shellOutput.stderr.includes('does not exist')) {
|
|
56
56
|
throw new PrismaSchemaError(`Database does not exist: ${shellOutput.stderr}`);
|
|
57
57
|
}
|
|
58
58
|
else if (shellOutput.exitCode === 0 || ignoreExitCode) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/node",
|
|
3
|
-
"version": "31.
|
|
3
|
+
"version": "31.16.0",
|
|
4
4
|
"description": "A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"augment",
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
"test:update": "npm test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@augment-vir/assert": "^31.
|
|
42
|
-
"@augment-vir/common": "^31.
|
|
41
|
+
"@augment-vir/assert": "^31.16.0",
|
|
42
|
+
"@augment-vir/common": "^31.16.0",
|
|
43
43
|
"@date-vir/duration": "^7.3.1",
|
|
44
44
|
"ansi-styles": "^6.2.1",
|
|
45
45
|
"terminate": "^2.8.0",
|
|
46
|
-
"tsx": "^4.19.
|
|
47
|
-
"type-fest": "^4.40.
|
|
46
|
+
"tsx": "^4.19.4",
|
|
47
|
+
"type-fest": "^4.40.1",
|
|
48
48
|
"typed-event-target": "^4.0.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@augment-vir/test": "^31.
|
|
52
|
-
"@prisma/client": "^6.
|
|
53
|
-
"@types/node": "^22.15.
|
|
51
|
+
"@augment-vir/test": "^31.16.0",
|
|
52
|
+
"@prisma/client": "^6.7.0",
|
|
53
|
+
"@types/node": "^22.15.3",
|
|
54
54
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
55
55
|
"@web/test-runner": "^0.20.1",
|
|
56
56
|
"@web/test-runner-commands": "^0.9.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"c8": "^10.1.3",
|
|
60
60
|
"concurrently": "^9.1.2",
|
|
61
61
|
"istanbul-smart-text-reporter": "^1.1.5",
|
|
62
|
-
"prisma": "^6.
|
|
62
|
+
"prisma": "^6.7.0",
|
|
63
63
|
"typescript": "^5.8.3"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
@@ -76,7 +76,7 @@ export function verifyOutput(
|
|
|
76
76
|
throw new PrismaSchemaError(
|
|
77
77
|
`Invalid schema file at '${schemaFilePath}':\n\n${shellOutput.stderr}`,
|
|
78
78
|
);
|
|
79
|
-
} else if (shellOutput.stderr.includes('does not exist
|
|
79
|
+
} else if (shellOutput.stderr.includes('does not exist')) {
|
|
80
80
|
throw new PrismaSchemaError(`Database does not exist: ${shellOutput.stderr}`);
|
|
81
81
|
} else if (shellOutput.exitCode === 0 || ignoreExitCode) {
|
|
82
82
|
return shellOutput;
|