prisma-client-php 0.0.53 → 0.0.54
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/dist/init.js +6 -6
- package/package.json +1 -1
package/dist/init.js
CHANGED
|
@@ -188,12 +188,12 @@ const readJsonFile = (filePath) => {
|
|
|
188
188
|
return JSON.parse(jsonData);
|
|
189
189
|
};
|
|
190
190
|
const npmPinnedVersions = {
|
|
191
|
-
prisma: "^6.
|
|
192
|
-
"@prisma/client": "^6.
|
|
193
|
-
"@prisma/internals": "^6.
|
|
194
|
-
tsx: "^4.19.
|
|
195
|
-
typescript: "^5.8.
|
|
196
|
-
"@types/node": "^22.
|
|
191
|
+
prisma: "^6.8.2",
|
|
192
|
+
"@prisma/client": "^6.8.2",
|
|
193
|
+
"@prisma/internals": "^6.8.2",
|
|
194
|
+
tsx: "^4.19.4",
|
|
195
|
+
typescript: "^5.8.3",
|
|
196
|
+
"@types/node": "^22.15.18",
|
|
197
197
|
};
|
|
198
198
|
function npmPkg(name) {
|
|
199
199
|
return npmPinnedVersions[name] ? `${name}@${npmPinnedVersions[name]}` : name;
|
package/package.json
CHANGED