@prisma-next/cli 0.1.0-pr.65.13 → 0.1.0-pr.65.14
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 +10 -10
package/README.md
CHANGED
|
@@ -759,7 +759,7 @@ prisma-next db init ➜ Initialize database schema from contract
|
|
|
759
759
|
|
|
760
760
|
**Config File (`prisma-next.config.ts`):**
|
|
761
761
|
|
|
762
|
-
The CLI uses a config file to specify the target family, target, adapter,
|
|
762
|
+
The CLI uses a config file to specify the target family, target, adapter, extensionPacks, and contract.
|
|
763
763
|
|
|
764
764
|
**Config Discovery:**
|
|
765
765
|
- `--config <path>`: Explicit path (relative or absolute)
|
|
@@ -963,7 +963,7 @@ import exampleExtension from '@prisma-next/extension-example/control';
|
|
|
963
963
|
|
|
964
964
|
export default defineConfig({
|
|
965
965
|
// family/target/adapter/driver omitted for brevity
|
|
966
|
-
|
|
966
|
+
extensionPacks: [exampleExtension],
|
|
967
967
|
});
|
|
968
968
|
```
|
|
969
969
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/cli",
|
|
3
|
-
"version": "0.1.0-pr.65.
|
|
3
|
+
"version": "0.1.0-pr.65.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"files": [
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"string-width": "^7.2.0",
|
|
20
20
|
"strip-ansi": "^7.1.2",
|
|
21
21
|
"wrap-ansi": "^9.0.2",
|
|
22
|
-
"@prisma-next/contract": "0.1.0-pr.65.
|
|
23
|
-
"@prisma-next/core-control-plane": "0.1.0-pr.65.
|
|
24
|
-
"@prisma-next/emitter": "0.1.0-pr.65.
|
|
25
|
-
"@prisma-next/utils": "0.1.0-pr.65.
|
|
22
|
+
"@prisma-next/contract": "0.1.0-pr.65.14",
|
|
23
|
+
"@prisma-next/core-control-plane": "0.1.0-pr.65.14",
|
|
24
|
+
"@prisma-next/emitter": "0.1.0-pr.65.14",
|
|
25
|
+
"@prisma-next/utils": "0.1.0-pr.65.14"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "24.10.4",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"typescript": "^5.9.3",
|
|
32
32
|
"vite-tsconfig-paths": "^5.1.4",
|
|
33
33
|
"vitest": "^4.0.16",
|
|
34
|
-
"@prisma-next/sql-contract": "0.1.0-pr.65.
|
|
35
|
-
"@prisma-next/sql-contract-emitter": "0.1.0-pr.65.
|
|
36
|
-
"@prisma-next/sql-contract-ts": "0.1.0-pr.65.
|
|
37
|
-
"@prisma-next/sql-operations": "0.1.0-pr.65.
|
|
38
|
-
"@prisma-next/sql-runtime": "0.1.0-pr.65.
|
|
34
|
+
"@prisma-next/sql-contract": "0.1.0-pr.65.14",
|
|
35
|
+
"@prisma-next/sql-contract-emitter": "0.1.0-pr.65.14",
|
|
36
|
+
"@prisma-next/sql-contract-ts": "0.1.0-pr.65.14",
|
|
37
|
+
"@prisma-next/sql-operations": "0.1.0-pr.65.14",
|
|
38
|
+
"@prisma-next/sql-runtime": "0.1.0-pr.65.14",
|
|
39
39
|
"@prisma-next/test-utils": "0.0.1"
|
|
40
40
|
},
|
|
41
41
|
"exports": {
|