prisma 6.8.0-dev.9 → 6.8.0-integration-engines-6-8-0-24-push-mkywrssuzzlv-f27b8115c67c55739c1dbd42d9e287ddc3d504a1.1

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.
@@ -26,13 +26,13 @@ __export(default_index_exports, {
26
26
  });
27
27
  module.exports = __toCommonJS(default_index_exports);
28
28
 
29
- // ../../node_modules/.pnpm/@prisma+engines-version@6.8.0-11.25148b9e00dcffe957ba9f31ed278578aa5fe95c/node_modules/@prisma/engines-version/package.json
29
+ // ../../node_modules/.pnpm/@prisma+engines-version@6.8.0-24.push-mkywrssuzzlv-f27b8115c67c55739c1dbd42d9e287ddc3d504a1/node_modules/@prisma/engines-version/package.json
30
30
  var prisma = {
31
- enginesVersion: "25148b9e00dcffe957ba9f31ed278578aa5fe95c"
31
+ enginesVersion: "f27b8115c67c55739c1dbd42d9e287ddc3d504a1"
32
32
  };
33
33
 
34
34
  // package.json
35
- var version = "6.8.0-dev.9";
35
+ var version = "6.8.0-integration-engines-6-8-0-24-push-mkywrssuzzlv-f27b8115c67c55739c1dbd42d9e287ddc3d504a1.1";
36
36
 
37
37
  // src/runtime/utils/clientVersion.ts
38
38
  var clientVersion = version;
@@ -201,10 +201,8 @@ function run(cmd, params, cwd = process.cwd()) {
201
201
  async function createDefaultGeneratedThrowFiles() {
202
202
  try {
203
203
  const dotPrismaClientDir = path.join(__dirname, '../../../.prisma/client')
204
- const denoPrismaClientDir = path.join(__dirname, '../../../.prisma/client/deno')
205
204
 
206
205
  await makeDir(dotPrismaClientDir)
207
- await makeDir(denoPrismaClientDir)
208
206
 
209
207
  const defaultFileConfig = {
210
208
  js: path.join(__dirname, 'default-index.js'),
@@ -223,10 +221,6 @@ async function createDefaultGeneratedThrowFiles() {
223
221
  js: path.join(__dirname, 'default-index.js'),
224
222
  ts: undefined,
225
223
  },
226
- 'deno/edge': {
227
- js: undefined,
228
- ts: path.join(__dirname, 'default-deno-edge.ts'),
229
- },
230
224
  }
231
225
 
232
226
  for (const file of Object.keys(defaultFiles)) {
@@ -298,7 +292,7 @@ function makeDir(input) {
298
292
  */
299
293
  function getPostInstallTrigger() {
300
294
  /*
301
- npm_config_argv` is not officially documented so here are our research notes
295
+ npm_config_argv` is not officially documented so here are our research notes
302
296
 
303
297
  `npm_config_argv` is available to the postinstall script when the containing package has been installed by npm into some project.
304
298
 
@@ -1,9 +0,0 @@
1
- class PrismaClient {
2
- constructor() {
3
- throw new Error(
4
- '@prisma/client/deno/edge did not initialize yet. Please run "prisma generate" and try to import it again.',
5
- )
6
- }
7
- }
8
-
9
- export { PrismaClient }