@naturalcycles/abba 1.5.0 → 1.6.0

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.
@@ -148,6 +148,10 @@ const config = {
148
148
  fromEnvVar: null,
149
149
  value: 'darwin',
150
150
  },
151
+ {
152
+ fromEnvVar: null,
153
+ value: 'darwin-arm64',
154
+ },
151
155
  {
152
156
  fromEnvVar: null,
153
157
  value: 'debian-openssl-1.1.x',
@@ -186,6 +190,9 @@ Object.assign(exports, Prisma)
186
190
  path.join(__dirname, 'libquery_engine-darwin.dylib.node')
187
191
  path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin.dylib.node')
188
192
 
193
+ path.join(__dirname, 'libquery_engine-darwin-arm64.dylib.node')
194
+ path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin-arm64.dylib.node')
195
+
189
196
  path.join(__dirname, 'libquery_engine-debian-openssl-1.1.x.so.node')
190
197
  path.join(process.cwd(), './src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node')
191
198
  path.join(__dirname, 'schema.prisma')
@@ -1,7 +1,7 @@
1
1
  generator client {
2
2
  provider = "prisma-client-js"
3
3
  output = "../src/prisma-output"
4
- binaryTargets = ["native", "darwin", "debian-openssl-1.1.x"]
4
+ binaryTargets = ["native", "darwin", "darwin-arm64", "debian-openssl-1.1.x"]
5
5
  }
6
6
 
7
7
  datasource db {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/abba",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build": "build && npm run copy-prisma-output",
@@ -148,6 +148,10 @@ const config = {
148
148
  fromEnvVar: null,
149
149
  value: 'darwin',
150
150
  },
151
+ {
152
+ fromEnvVar: null,
153
+ value: 'darwin-arm64',
154
+ },
151
155
  {
152
156
  fromEnvVar: null,
153
157
  value: 'debian-openssl-1.1.x',
@@ -186,6 +190,9 @@ Object.assign(exports, Prisma)
186
190
  path.join(__dirname, 'libquery_engine-darwin.dylib.node')
187
191
  path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin.dylib.node')
188
192
 
193
+ path.join(__dirname, 'libquery_engine-darwin-arm64.dylib.node')
194
+ path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin-arm64.dylib.node')
195
+
189
196
  path.join(__dirname, 'libquery_engine-debian-openssl-1.1.x.so.node')
190
197
  path.join(process.cwd(), './src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node')
191
198
  path.join(__dirname, 'schema.prisma')
@@ -1,7 +1,7 @@
1
1
  generator client {
2
2
  provider = "prisma-client-js"
3
3
  output = "../src/prisma-output"
4
- binaryTargets = ["native", "darwin", "debian-openssl-1.1.x"]
4
+ binaryTargets = ["native", "darwin", "darwin-arm64", "debian-openssl-1.1.x"]
5
5
  }
6
6
 
7
7
  datasource db {