@prisma-next/plan 0.1.0-dev.2 → 0.1.0-dev.21
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 +6 -6
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -77,15 +77,15 @@ This package is part of the **framework domain**, **core layer**, **shared plane
|
|
|
77
77
|
- **Domain**: framework (target-agnostic)
|
|
78
78
|
- **Layer**: core
|
|
79
79
|
- **Plane**: shared
|
|
80
|
-
- **Path**: `packages/framework/core
|
|
80
|
+
- **Path**: `packages/1-framework/1-core/shared/plan`
|
|
81
81
|
|
|
82
82
|
## Related Subsystems
|
|
83
83
|
|
|
84
|
-
- **[Query Lanes](
|
|
85
|
-
- **[Runtime & Plugin Framework](
|
|
84
|
+
- **[Query Lanes](../../../../../docs/architecture%20docs/subsystems/3.%20Query%20Lanes.md)**: Uses plan errors during query construction
|
|
85
|
+
- **[Runtime & Plugin Framework](../../../../../docs/architecture%20docs/subsystems/4.%20Runtime%20&%20Plugin%20Framework.md)**: Uses plan errors for validation
|
|
86
86
|
|
|
87
87
|
## Related ADRs
|
|
88
88
|
|
|
89
|
-
- [ADR 140 - Package Layering & Target-Family Namespacing](
|
|
90
|
-
- [ADR 068 - Error mapping to RuntimeError](
|
|
91
|
-
- [ADR 027 - Error Envelope Stable Codes](
|
|
89
|
+
- [ADR 140 - Package Layering & Target-Family Namespacing](../../../../../docs/architecture%20docs/adrs/ADR%20140%20-%20Package%20Layering%20&%20Target-Family%20Namespacing.md)
|
|
90
|
+
- [ADR 068 - Error mapping to RuntimeError](../../../../../docs/architecture%20docs/adrs/ADR%20068%20-%20Error%20mapping%20to%20RuntimeError.md)
|
|
91
|
+
- [ADR 027 - Error Envelope Stable Codes](../../../../../docs/architecture%20docs/adrs/ADR%20027%20-%20Error%20Envelope%20Stable%20Codes.md)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/plan",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "Plan helpers, diagnostics, and shared errors for Prisma Next",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"tsup": "^8.3.0",
|
|
9
9
|
"typescript": "^5.9.3",
|
|
10
|
-
"vitest": "^
|
|
10
|
+
"vitest": "^4.0.16"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist"
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
"test": "vitest run",
|
|
32
32
|
"test:coverage": "vitest run --coverage",
|
|
33
33
|
"typecheck": "tsc --project tsconfig.json --noEmit",
|
|
34
|
-
"lint": "biome check . --config-path
|
|
35
|
-
"
|
|
34
|
+
"lint": "biome check . --config-path ../../../../../biome.json --error-on-warnings",
|
|
35
|
+
"lint:fix": "biome check --write . --config-path ../../../biome.json",
|
|
36
|
+
"lint:fix:unsafe": "biome check --write --unsafe . --config-path ../../../biome.json",
|
|
37
|
+
"clean": "node ../../../../../scripts/clean.mjs"
|
|
36
38
|
}
|
|
37
39
|
}
|