@a_team/prisma 3.1.0-win → 3.1.1-macos

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.
@@ -357,7 +357,7 @@ const config = {
357
357
  "binaryTargets": [
358
358
  {
359
359
  "fromEnvVar": null,
360
- "value": "windows"
360
+ "value": "darwin-arm64"
361
361
  }
362
362
  ],
363
363
  "previewFeatures": [
@@ -358,7 +358,7 @@ const config = {
358
358
  "binaryTargets": [
359
359
  {
360
360
  "fromEnvVar": null,
361
- "value": "windows"
361
+ "value": "darwin-arm64"
362
362
  }
363
363
  ],
364
364
  "previewFeatures": [
@@ -426,8 +426,8 @@ exports.PrismaClient = PrismaClient
426
426
  Object.assign(exports, Prisma)
427
427
 
428
428
  // file annotations for bundling tools to include these files
429
- path.join(__dirname, "query_engine-windows.dll.node");
430
- path.join(process.cwd(), "src/client/query_engine-windows.dll.node")
429
+ path.join(__dirname, "libquery_engine-darwin-arm64.dylib.node");
430
+ path.join(process.cwd(), "src/client/libquery_engine-darwin-arm64.dylib.node")
431
431
  // file annotations for bundling tools to include these files
432
432
  path.join(__dirname, "schema.prisma");
433
433
  path.join(process.cwd(), "src/client/schema.prisma")
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.1.0-win",
3
+ "version": "3.1.1-macos",
4
4
  "os": [
5
- "win32"
5
+ "darwin"
6
+ ],
7
+ "cpu": [
8
+ "arm64"
6
9
  ],
7
- "cpu": [],
8
10
  "keywords": [],
9
11
  "scripts": {
10
12
  "build": "rm -rf ./dist && yarn run generate",