@naturalcycles/abba 1.4.0 → 1.5.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.
@@ -139,7 +139,20 @@ const config = {
139
139
  config: {
140
140
  engineType: 'library',
141
141
  },
142
- binaryTargets: [],
142
+ binaryTargets: [
143
+ {
144
+ fromEnvVar: null,
145
+ value: 'darwin',
146
+ },
147
+ {
148
+ fromEnvVar: null,
149
+ value: 'darwin',
150
+ },
151
+ {
152
+ fromEnvVar: null,
153
+ value: 'debian-openssl-1.1.x',
154
+ },
155
+ ],
143
156
  previewFeatures: [],
144
157
  isCustomOutput: true,
145
158
  },
@@ -172,5 +185,8 @@ Object.assign(exports, Prisma)
172
185
 
173
186
  path.join(__dirname, 'libquery_engine-darwin.dylib.node')
174
187
  path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin.dylib.node')
188
+
189
+ path.join(__dirname, 'libquery_engine-debian-openssl-1.1.x.so.node')
190
+ path.join(process.cwd(), './src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node')
175
191
  path.join(__dirname, 'schema.prisma')
176
192
  path.join(process.cwd(), './src/prisma-output/schema.prisma')
@@ -1,6 +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
5
  }
5
6
 
6
7
  datasource db {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/abba",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build": "build && npm run copy-prisma-output",
@@ -139,7 +139,20 @@ const config = {
139
139
  config: {
140
140
  engineType: 'library',
141
141
  },
142
- binaryTargets: [],
142
+ binaryTargets: [
143
+ {
144
+ fromEnvVar: null,
145
+ value: 'darwin',
146
+ },
147
+ {
148
+ fromEnvVar: null,
149
+ value: 'darwin',
150
+ },
151
+ {
152
+ fromEnvVar: null,
153
+ value: 'debian-openssl-1.1.x',
154
+ },
155
+ ],
143
156
  previewFeatures: [],
144
157
  isCustomOutput: true,
145
158
  },
@@ -172,5 +185,8 @@ Object.assign(exports, Prisma)
172
185
 
173
186
  path.join(__dirname, 'libquery_engine-darwin.dylib.node')
174
187
  path.join(process.cwd(), './src/prisma-output/libquery_engine-darwin.dylib.node')
188
+
189
+ path.join(__dirname, 'libquery_engine-debian-openssl-1.1.x.so.node')
190
+ path.join(process.cwd(), './src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node')
175
191
  path.join(__dirname, 'schema.prisma')
176
192
  path.join(process.cwd(), './src/prisma-output/schema.prisma')
@@ -1,6 +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
5
  }
5
6
 
6
7
  datasource db {