@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.
- package/dist/prisma-output/index.js +17 -1
- package/dist/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/prisma-output/schema.prisma +1 -0
- package/package.json +1 -1
- package/src/prisma-output/index.js +17 -1
- package/src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/src/prisma-output/schema.prisma +1 -0
|
@@ -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')
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -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')
|
|
Binary file
|