@juliobrim/prisma-shared 1.0.7 → 1.0.9

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 CHANGED
@@ -80,7 +80,7 @@ import "node_modules/@juliobrim/prisma-shared/schema.prisma"
80
80
  // Configurações específicas do projeto (se necessário)
81
81
  generator client {
82
82
  provider = "prisma-client-js"
83
- output = "./generated/client"
83
+ // O cliente será gerado no local padrão: node_modules/.prisma/client
84
84
  }
85
85
 
86
86
  datasource db {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juliobrim/prisma-shared",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Schema Prisma compartilhado entre projetos Sabcon",
5
5
  "main": "schema.prisma",
6
6
  "files": [
@@ -40,12 +40,12 @@
40
40
  "homepage": "https://github.com/juliobrim/prisma-shared#readme",
41
41
  "devDependencies": {
42
42
  "@types/node": "^20.0.0",
43
- "prisma": "^6.5.0",
43
+ "prisma": "^6.6.0",
44
44
  "ts-node": "^10.9.0",
45
45
  "typescript": "^5.0.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "@prisma/client": "^6.5.0"
48
+ "@prisma/client": "^6.6.0"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=16.0.0"
package/schema.prisma CHANGED
@@ -1,6 +1,5 @@
1
1
  generator client {
2
2
  provider = "prisma-client-js"
3
- output = "../node_modules/.prisma/client"
4
3
  }
5
4
 
6
5
  datasource db {