@prisma-next/cli 0.1.0-dev.11 → 0.1.0-dev.13
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 +2 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -724,7 +724,7 @@ See `.cursor/rules/config-validation-and-normalization.mdc` for detailed pattern
|
|
|
724
724
|
|
|
725
725
|
### Pack Assembly
|
|
726
726
|
- **Family instances** now handle pack assembly internally. The CLI creates a family instance via `config.family.create()` and reads assembly data (operation registry, type imports, extension IDs) from the instance.
|
|
727
|
-
- **Removed**: `pack-assembly.ts` has been removed. Pack assembly is now handled by family instances. For SQL family, tests can import pack-based helpers directly from `packages/sql/family/src/core/assembly.ts` using relative paths.
|
|
727
|
+
- **Removed**: `pack-assembly.ts` has been removed. Pack assembly is now handled by family instances. For SQL family, tests can import pack-based helpers directly from `packages/2-sql/3-tooling/family/src/core/assembly.ts` using relative paths.
|
|
728
728
|
- Assembly logic is family-specific and owned by each family's instance implementation (e.g., `createSqlFamilyInstance` in `@prisma-next/family-sql`).
|
|
729
729
|
|
|
730
730
|
### Output Formatting (`utils/output.ts`)
|
|
@@ -847,7 +847,7 @@ This package is part of the **framework domain**, **tooling layer**, **migration
|
|
|
847
847
|
- **Domain**: framework (target-agnostic)
|
|
848
848
|
- **Layer**: tooling
|
|
849
849
|
- **Plane**: migration
|
|
850
|
-
- **Path**: `packages/framework/tooling/cli`
|
|
850
|
+
- **Path**: `packages/1-framework/3-tooling/cli`
|
|
851
851
|
|
|
852
852
|
## See Also
|
|
853
853
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/cli",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"files": [
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"string-width": "^7.2.0",
|
|
20
20
|
"strip-ansi": "^7.1.2",
|
|
21
21
|
"wrap-ansi": "^9.0.2",
|
|
22
|
-
"@prisma-next/
|
|
23
|
-
"@prisma-next/
|
|
24
|
-
"@prisma-next/emitter": "0.1.0-dev.
|
|
22
|
+
"@prisma-next/contract": "0.1.0-dev.13",
|
|
23
|
+
"@prisma-next/core-control-plane": "0.1.0-dev.13",
|
|
24
|
+
"@prisma-next/emitter": "0.1.0-dev.13"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^20.0.0",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"typescript": "^5.9.3",
|
|
30
30
|
"vite-tsconfig-paths": "^5.1.4",
|
|
31
31
|
"vitest": "^2.1.1",
|
|
32
|
-
"@prisma-next/sql-contract": "0.1.0-dev.
|
|
33
|
-
"@prisma-next/sql-contract-emitter": "0.1.0-dev.
|
|
34
|
-
"@prisma-next/sql-contract-ts": "0.1.0-dev.
|
|
35
|
-
"@prisma-next/sql-operations": "0.1.0-dev.
|
|
36
|
-
"@prisma-next/sql-runtime": "0.1.0-dev.
|
|
32
|
+
"@prisma-next/sql-contract": "0.1.0-dev.13",
|
|
33
|
+
"@prisma-next/sql-contract-emitter": "0.1.0-dev.13",
|
|
34
|
+
"@prisma-next/sql-contract-ts": "0.1.0-dev.13",
|
|
35
|
+
"@prisma-next/sql-operations": "0.1.0-dev.13",
|
|
36
|
+
"@prisma-next/sql-runtime": "0.1.0-dev.13",
|
|
37
37
|
"@prisma-next/test-utils": "0.0.1"
|
|
38
38
|
},
|
|
39
39
|
"exports": {
|