@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.
- package/dist/prisma-output/index.js +7 -0
- package/dist/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/prisma-output/schema.prisma +1 -1
- package/package.json +1 -1
- package/src/prisma-output/index.js +7 -0
- package/src/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/src/prisma-output/schema.prisma +1 -1
|
@@ -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')
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -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')
|
|
Binary file
|