@prisma/client-generator-ts 6.7.0-dev.49 → 6.7.0-dev.50
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -6115,7 +6115,7 @@ var tsNoCheckPreamble = `/* @ts-nocheck */
|
|
|
6115
6115
|
`;
|
|
6116
6116
|
function addPreambleToTSFiles(fileMap, includeTSNoCheckPreamble) {
|
|
6117
6117
|
for (const [key, value] of Object.entries(fileMap)) {
|
|
6118
|
-
if (typeof value === "string" && key.endsWith(".ts")) {
|
|
6118
|
+
if (typeof value === "string" && (key.endsWith(".ts") || key.endsWith(".cts") || key.endsWith(".mts"))) {
|
|
6119
6119
|
fileMap[key] = generatedCodePreamble + (includeTSNoCheckPreamble ? tsNoCheckPreamble : "") + value;
|
|
6120
6120
|
} else if (typeof value === "object" && value !== null) {
|
|
6121
6121
|
addPreambleToTSFiles(value, includeTSNoCheckPreamble);
|
|
@@ -6461,7 +6461,7 @@ var import_get_tsconfig = require("get-tsconfig");
|
|
|
6461
6461
|
var import_ts_pattern2 = require("ts-pattern");
|
|
6462
6462
|
|
|
6463
6463
|
// package.json
|
|
6464
|
-
var version = "6.7.0-dev.
|
|
6464
|
+
var version = "6.7.0-dev.50";
|
|
6465
6465
|
|
|
6466
6466
|
// src/module-format.ts
|
|
6467
6467
|
function parseModuleFormat(format) {
|
package/dist/index.mjs
CHANGED
|
@@ -6114,7 +6114,7 @@ var tsNoCheckPreamble = `/* @ts-nocheck */
|
|
|
6114
6114
|
`;
|
|
6115
6115
|
function addPreambleToTSFiles(fileMap, includeTSNoCheckPreamble) {
|
|
6116
6116
|
for (const [key, value] of Object.entries(fileMap)) {
|
|
6117
|
-
if (typeof value === "string" && key.endsWith(".ts")) {
|
|
6117
|
+
if (typeof value === "string" && (key.endsWith(".ts") || key.endsWith(".cts") || key.endsWith(".mts"))) {
|
|
6118
6118
|
fileMap[key] = generatedCodePreamble + (includeTSNoCheckPreamble ? tsNoCheckPreamble : "") + value;
|
|
6119
6119
|
} else if (typeof value === "object" && value !== null) {
|
|
6120
6120
|
addPreambleToTSFiles(value, includeTSNoCheckPreamble);
|
|
@@ -6460,7 +6460,7 @@ import { getTsconfig } from "get-tsconfig";
|
|
|
6460
6460
|
import { match as match2 } from "ts-pattern";
|
|
6461
6461
|
|
|
6462
6462
|
// package.json
|
|
6463
|
-
var version = "6.7.0-dev.
|
|
6463
|
+
var version = "6.7.0-dev.50";
|
|
6464
6464
|
|
|
6465
6465
|
// src/module-format.ts
|
|
6466
6466
|
function parseModuleFormat(format) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-generator-ts",
|
|
3
|
-
"version": "6.7.0-dev.
|
|
3
|
+
"version": "6.7.0-dev.50",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"pkg-up": "3.1.0",
|
|
35
35
|
"pluralize": "8.0.0",
|
|
36
36
|
"ts-pattern": "5.6.2",
|
|
37
|
-
"@prisma/
|
|
38
|
-
"@prisma/
|
|
39
|
-
"@prisma/
|
|
40
|
-
"@prisma/
|
|
41
|
-
"@prisma/
|
|
42
|
-
"@prisma/
|
|
43
|
-
"@prisma/ts-builders": "6.7.0-dev.
|
|
44
|
-
"@prisma/
|
|
37
|
+
"@prisma/client-common": "6.7.0-dev.50",
|
|
38
|
+
"@prisma/debug": "6.7.0-dev.50",
|
|
39
|
+
"@prisma/generator": "6.7.0-dev.50",
|
|
40
|
+
"@prisma/get-platform": "6.7.0-dev.50",
|
|
41
|
+
"@prisma/fetch-engine": "6.7.0-dev.50",
|
|
42
|
+
"@prisma/internals": "6.7.0-dev.50",
|
|
43
|
+
"@prisma/ts-builders": "6.7.0-dev.50",
|
|
44
|
+
"@prisma/dmmf": "6.7.0-dev.50"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/pluralize": "0.0.33",
|