@prisma-next/config 0.14.0-dev.4 → 0.14.0-dev.6
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/README.md +3 -3
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ This package owns the shared config contract used by tooling and authoring packa
|
|
|
25
25
|
|
|
26
26
|
## Non-responsibilities
|
|
27
27
|
|
|
28
|
-
- Config file discovery/loading (`c12`, file I/O) - handled by `@prisma-next/
|
|
28
|
+
- Config file discovery/loading (`c12`, file I/O) - handled by `@prisma-next/config-loader`
|
|
29
29
|
- CLI error envelope formatting and rendering - handled by CLI/errors package error utilities
|
|
30
30
|
- Control-plane migration operations and runtime actions
|
|
31
31
|
|
|
@@ -54,5 +54,5 @@ validateConfig(config);
|
|
|
54
54
|
Declare `source.inputs` only for source files that are not already covered by the config module
|
|
55
55
|
graph, such as PSL schema paths or TypeScript contract paths passed as strings. Do not include
|
|
56
56
|
emitted artifact paths derived from `contract.output` (for example `contract.json` or the
|
|
57
|
-
colocated `contract.d.ts`);
|
|
58
|
-
commands run. Tooling should always treat the config module graph as watched by default.
|
|
57
|
+
colocated `contract.d.ts`); `@prisma-next/config-loader` resolves and validates those paths
|
|
58
|
+
before emit/watch commands run. Tooling should always treat the config module graph as watched by default.
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/config",
|
|
3
|
-
"version": "0.14.0-dev.
|
|
3
|
+
"version": "0.14.0-dev.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"description": "Prisma Next config authoring types and validation",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@prisma-next/contract": "0.14.0-dev.
|
|
10
|
-
"@prisma-next/framework-components": "0.14.0-dev.
|
|
11
|
-
"@prisma-next/utils": "0.14.0-dev.
|
|
12
|
-
"arktype": "^2.2.0"
|
|
9
|
+
"@prisma-next/contract": "0.14.0-dev.6",
|
|
10
|
+
"@prisma-next/framework-components": "0.14.0-dev.6",
|
|
11
|
+
"@prisma-next/utils": "0.14.0-dev.6",
|
|
12
|
+
"arktype": "^2.2.0",
|
|
13
|
+
"pathe": "^2.0.3"
|
|
13
14
|
},
|
|
14
15
|
"devDependencies": {
|
|
15
|
-
"@prisma-next/tsconfig": "0.14.0-dev.
|
|
16
|
-
"@prisma-next/tsdown": "0.14.0-dev.
|
|
16
|
+
"@prisma-next/tsconfig": "0.14.0-dev.6",
|
|
17
|
+
"@prisma-next/tsdown": "0.14.0-dev.6",
|
|
17
18
|
"tsdown": "0.22.1",
|
|
18
19
|
"typescript": "5.9.3",
|
|
19
20
|
"vitest": "4.1.8"
|