qrbit 1.1.0 → 1.1.1
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/native.cjs +50 -50
- package/dist/native.js +50 -50
- package/dist/qrbit.darwin-arm64.node +0 -0
- package/dist/qrbit.darwin-x64.node +0 -0
- package/dist/qrbit.linux-x64-gnu.node +0 -0
- package/dist/qrbit.linux-x64-musl.node +0 -0
- package/dist/qrbit.win32-x64-msvc.node +0 -0
- package/package.json +1 -1
package/dist/native.cjs
CHANGED
|
@@ -80,8 +80,8 @@ function requireNative() {
|
|
|
80
80
|
try {
|
|
81
81
|
const binding = require('qrbit-android-arm64')
|
|
82
82
|
const bindingPackageVersion = require('qrbit-android-arm64/package.json').version
|
|
83
|
-
if (bindingPackageVersion !== '1.1.
|
|
84
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
83
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
84
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
85
85
|
}
|
|
86
86
|
return binding
|
|
87
87
|
} catch (e) {
|
|
@@ -96,8 +96,8 @@ function requireNative() {
|
|
|
96
96
|
try {
|
|
97
97
|
const binding = require('qrbit-android-arm-eabi')
|
|
98
98
|
const bindingPackageVersion = require('qrbit-android-arm-eabi/package.json').version
|
|
99
|
-
if (bindingPackageVersion !== '1.1.
|
|
100
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
99
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
100
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
101
101
|
}
|
|
102
102
|
return binding
|
|
103
103
|
} catch (e) {
|
|
@@ -116,8 +116,8 @@ function requireNative() {
|
|
|
116
116
|
try {
|
|
117
117
|
const binding = require('qrbit-win32-x64-msvc')
|
|
118
118
|
const bindingPackageVersion = require('qrbit-win32-x64-msvc/package.json').version
|
|
119
|
-
if (bindingPackageVersion !== '1.1.
|
|
120
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
119
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
120
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
121
121
|
}
|
|
122
122
|
return binding
|
|
123
123
|
} catch (e) {
|
|
@@ -132,8 +132,8 @@ function requireNative() {
|
|
|
132
132
|
try {
|
|
133
133
|
const binding = require('qrbit-win32-ia32-msvc')
|
|
134
134
|
const bindingPackageVersion = require('qrbit-win32-ia32-msvc/package.json').version
|
|
135
|
-
if (bindingPackageVersion !== '1.1.
|
|
136
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
135
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
136
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
137
137
|
}
|
|
138
138
|
return binding
|
|
139
139
|
} catch (e) {
|
|
@@ -148,8 +148,8 @@ function requireNative() {
|
|
|
148
148
|
try {
|
|
149
149
|
const binding = require('qrbit-win32-arm64-msvc')
|
|
150
150
|
const bindingPackageVersion = require('qrbit-win32-arm64-msvc/package.json').version
|
|
151
|
-
if (bindingPackageVersion !== '1.1.
|
|
152
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
151
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
152
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
153
153
|
}
|
|
154
154
|
return binding
|
|
155
155
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('qrbit-darwin-universal')
|
|
169
169
|
const bindingPackageVersion = require('qrbit-darwin-universal/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '1.1.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
170
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -183,8 +183,8 @@ function requireNative() {
|
|
|
183
183
|
try {
|
|
184
184
|
const binding = require('qrbit-darwin-x64')
|
|
185
185
|
const bindingPackageVersion = require('qrbit-darwin-x64/package.json').version
|
|
186
|
-
if (bindingPackageVersion !== '1.1.
|
|
187
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
186
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
187
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
188
188
|
}
|
|
189
189
|
return binding
|
|
190
190
|
} catch (e) {
|
|
@@ -199,8 +199,8 @@ function requireNative() {
|
|
|
199
199
|
try {
|
|
200
200
|
const binding = require('qrbit-darwin-arm64')
|
|
201
201
|
const bindingPackageVersion = require('qrbit-darwin-arm64/package.json').version
|
|
202
|
-
if (bindingPackageVersion !== '1.1.
|
|
203
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
202
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
203
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
204
204
|
}
|
|
205
205
|
return binding
|
|
206
206
|
} catch (e) {
|
|
@@ -219,8 +219,8 @@ function requireNative() {
|
|
|
219
219
|
try {
|
|
220
220
|
const binding = require('qrbit-freebsd-x64')
|
|
221
221
|
const bindingPackageVersion = require('qrbit-freebsd-x64/package.json').version
|
|
222
|
-
if (bindingPackageVersion !== '1.1.
|
|
223
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
222
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
223
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
224
224
|
}
|
|
225
225
|
return binding
|
|
226
226
|
} catch (e) {
|
|
@@ -235,8 +235,8 @@ function requireNative() {
|
|
|
235
235
|
try {
|
|
236
236
|
const binding = require('qrbit-freebsd-arm64')
|
|
237
237
|
const bindingPackageVersion = require('qrbit-freebsd-arm64/package.json').version
|
|
238
|
-
if (bindingPackageVersion !== '1.1.
|
|
239
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
238
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
239
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
240
240
|
}
|
|
241
241
|
return binding
|
|
242
242
|
} catch (e) {
|
|
@@ -256,8 +256,8 @@ function requireNative() {
|
|
|
256
256
|
try {
|
|
257
257
|
const binding = require('qrbit-linux-x64-musl')
|
|
258
258
|
const bindingPackageVersion = require('qrbit-linux-x64-musl/package.json').version
|
|
259
|
-
if (bindingPackageVersion !== '1.1.
|
|
260
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
259
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
260
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
261
261
|
}
|
|
262
262
|
return binding
|
|
263
263
|
} catch (e) {
|
|
@@ -272,8 +272,8 @@ function requireNative() {
|
|
|
272
272
|
try {
|
|
273
273
|
const binding = require('qrbit-linux-x64-gnu')
|
|
274
274
|
const bindingPackageVersion = require('qrbit-linux-x64-gnu/package.json').version
|
|
275
|
-
if (bindingPackageVersion !== '1.1.
|
|
276
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
275
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
276
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
277
277
|
}
|
|
278
278
|
return binding
|
|
279
279
|
} catch (e) {
|
|
@@ -290,8 +290,8 @@ function requireNative() {
|
|
|
290
290
|
try {
|
|
291
291
|
const binding = require('qrbit-linux-arm64-musl')
|
|
292
292
|
const bindingPackageVersion = require('qrbit-linux-arm64-musl/package.json').version
|
|
293
|
-
if (bindingPackageVersion !== '1.1.
|
|
294
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
293
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
294
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
295
295
|
}
|
|
296
296
|
return binding
|
|
297
297
|
} catch (e) {
|
|
@@ -306,8 +306,8 @@ function requireNative() {
|
|
|
306
306
|
try {
|
|
307
307
|
const binding = require('qrbit-linux-arm64-gnu')
|
|
308
308
|
const bindingPackageVersion = require('qrbit-linux-arm64-gnu/package.json').version
|
|
309
|
-
if (bindingPackageVersion !== '1.1.
|
|
310
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
309
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
310
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
311
311
|
}
|
|
312
312
|
return binding
|
|
313
313
|
} catch (e) {
|
|
@@ -324,8 +324,8 @@ function requireNative() {
|
|
|
324
324
|
try {
|
|
325
325
|
const binding = require('qrbit-linux-arm-musleabihf')
|
|
326
326
|
const bindingPackageVersion = require('qrbit-linux-arm-musleabihf/package.json').version
|
|
327
|
-
if (bindingPackageVersion !== '1.1.
|
|
328
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
327
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
328
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
329
329
|
}
|
|
330
330
|
return binding
|
|
331
331
|
} catch (e) {
|
|
@@ -340,8 +340,8 @@ function requireNative() {
|
|
|
340
340
|
try {
|
|
341
341
|
const binding = require('qrbit-linux-arm-gnueabihf')
|
|
342
342
|
const bindingPackageVersion = require('qrbit-linux-arm-gnueabihf/package.json').version
|
|
343
|
-
if (bindingPackageVersion !== '1.1.
|
|
344
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
343
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
344
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
345
345
|
}
|
|
346
346
|
return binding
|
|
347
347
|
} catch (e) {
|
|
@@ -358,8 +358,8 @@ function requireNative() {
|
|
|
358
358
|
try {
|
|
359
359
|
const binding = require('qrbit-linux-loong64-musl')
|
|
360
360
|
const bindingPackageVersion = require('qrbit-linux-loong64-musl/package.json').version
|
|
361
|
-
if (bindingPackageVersion !== '1.1.
|
|
362
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
361
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
362
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
363
363
|
}
|
|
364
364
|
return binding
|
|
365
365
|
} catch (e) {
|
|
@@ -374,8 +374,8 @@ function requireNative() {
|
|
|
374
374
|
try {
|
|
375
375
|
const binding = require('qrbit-linux-loong64-gnu')
|
|
376
376
|
const bindingPackageVersion = require('qrbit-linux-loong64-gnu/package.json').version
|
|
377
|
-
if (bindingPackageVersion !== '1.1.
|
|
378
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
377
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
378
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
379
379
|
}
|
|
380
380
|
return binding
|
|
381
381
|
} catch (e) {
|
|
@@ -392,8 +392,8 @@ function requireNative() {
|
|
|
392
392
|
try {
|
|
393
393
|
const binding = require('qrbit-linux-riscv64-musl')
|
|
394
394
|
const bindingPackageVersion = require('qrbit-linux-riscv64-musl/package.json').version
|
|
395
|
-
if (bindingPackageVersion !== '1.1.
|
|
396
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
395
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
396
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
397
397
|
}
|
|
398
398
|
return binding
|
|
399
399
|
} catch (e) {
|
|
@@ -408,8 +408,8 @@ function requireNative() {
|
|
|
408
408
|
try {
|
|
409
409
|
const binding = require('qrbit-linux-riscv64-gnu')
|
|
410
410
|
const bindingPackageVersion = require('qrbit-linux-riscv64-gnu/package.json').version
|
|
411
|
-
if (bindingPackageVersion !== '1.1.
|
|
412
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
411
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
412
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
413
413
|
}
|
|
414
414
|
return binding
|
|
415
415
|
} catch (e) {
|
|
@@ -425,8 +425,8 @@ function requireNative() {
|
|
|
425
425
|
try {
|
|
426
426
|
const binding = require('qrbit-linux-ppc64-gnu')
|
|
427
427
|
const bindingPackageVersion = require('qrbit-linux-ppc64-gnu/package.json').version
|
|
428
|
-
if (bindingPackageVersion !== '1.1.
|
|
429
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
428
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
429
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
430
430
|
}
|
|
431
431
|
return binding
|
|
432
432
|
} catch (e) {
|
|
@@ -441,8 +441,8 @@ function requireNative() {
|
|
|
441
441
|
try {
|
|
442
442
|
const binding = require('qrbit-linux-s390x-gnu')
|
|
443
443
|
const bindingPackageVersion = require('qrbit-linux-s390x-gnu/package.json').version
|
|
444
|
-
if (bindingPackageVersion !== '1.1.
|
|
445
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
444
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
445
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
446
446
|
}
|
|
447
447
|
return binding
|
|
448
448
|
} catch (e) {
|
|
@@ -461,8 +461,8 @@ function requireNative() {
|
|
|
461
461
|
try {
|
|
462
462
|
const binding = require('qrbit-openharmony-arm64')
|
|
463
463
|
const bindingPackageVersion = require('qrbit-openharmony-arm64/package.json').version
|
|
464
|
-
if (bindingPackageVersion !== '1.1.
|
|
465
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
464
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
465
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
466
466
|
}
|
|
467
467
|
return binding
|
|
468
468
|
} catch (e) {
|
|
@@ -477,8 +477,8 @@ function requireNative() {
|
|
|
477
477
|
try {
|
|
478
478
|
const binding = require('qrbit-openharmony-x64')
|
|
479
479
|
const bindingPackageVersion = require('qrbit-openharmony-x64/package.json').version
|
|
480
|
-
if (bindingPackageVersion !== '1.1.
|
|
481
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
480
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
481
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
482
482
|
}
|
|
483
483
|
return binding
|
|
484
484
|
} catch (e) {
|
|
@@ -493,8 +493,8 @@ function requireNative() {
|
|
|
493
493
|
try {
|
|
494
494
|
const binding = require('qrbit-openharmony-arm')
|
|
495
495
|
const bindingPackageVersion = require('qrbit-openharmony-arm/package.json').version
|
|
496
|
-
if (bindingPackageVersion !== '1.1.
|
|
497
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
496
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
497
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
498
498
|
}
|
|
499
499
|
return binding
|
|
500
500
|
} catch (e) {
|
package/dist/native.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('qrbit-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('qrbit-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '1.1.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
84
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('qrbit-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('qrbit-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '1.1.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
100
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -117,8 +117,8 @@ function requireNative() {
|
|
|
117
117
|
try {
|
|
118
118
|
const binding = require('qrbit-win32-x64-msvc')
|
|
119
119
|
const bindingPackageVersion = require('qrbit-win32-x64-msvc/package.json').version
|
|
120
|
-
if (bindingPackageVersion !== '1.1.
|
|
121
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
120
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
121
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
122
122
|
}
|
|
123
123
|
return binding
|
|
124
124
|
} catch (e) {
|
|
@@ -133,8 +133,8 @@ function requireNative() {
|
|
|
133
133
|
try {
|
|
134
134
|
const binding = require('qrbit-win32-ia32-msvc')
|
|
135
135
|
const bindingPackageVersion = require('qrbit-win32-ia32-msvc/package.json').version
|
|
136
|
-
if (bindingPackageVersion !== '1.1.
|
|
137
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
136
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
137
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
138
138
|
}
|
|
139
139
|
return binding
|
|
140
140
|
} catch (e) {
|
|
@@ -149,8 +149,8 @@ function requireNative() {
|
|
|
149
149
|
try {
|
|
150
150
|
const binding = require('qrbit-win32-arm64-msvc')
|
|
151
151
|
const bindingPackageVersion = require('qrbit-win32-arm64-msvc/package.json').version
|
|
152
|
-
if (bindingPackageVersion !== '1.1.
|
|
153
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
152
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
153
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
154
154
|
}
|
|
155
155
|
return binding
|
|
156
156
|
} catch (e) {
|
|
@@ -168,8 +168,8 @@ function requireNative() {
|
|
|
168
168
|
try {
|
|
169
169
|
const binding = require('qrbit-darwin-universal')
|
|
170
170
|
const bindingPackageVersion = require('qrbit-darwin-universal/package.json').version
|
|
171
|
-
if (bindingPackageVersion !== '1.1.
|
|
172
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
171
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
172
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
173
173
|
}
|
|
174
174
|
return binding
|
|
175
175
|
} catch (e) {
|
|
@@ -184,8 +184,8 @@ function requireNative() {
|
|
|
184
184
|
try {
|
|
185
185
|
const binding = require('qrbit-darwin-x64')
|
|
186
186
|
const bindingPackageVersion = require('qrbit-darwin-x64/package.json').version
|
|
187
|
-
if (bindingPackageVersion !== '1.1.
|
|
188
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
187
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
188
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
189
189
|
}
|
|
190
190
|
return binding
|
|
191
191
|
} catch (e) {
|
|
@@ -200,8 +200,8 @@ function requireNative() {
|
|
|
200
200
|
try {
|
|
201
201
|
const binding = require('qrbit-darwin-arm64')
|
|
202
202
|
const bindingPackageVersion = require('qrbit-darwin-arm64/package.json').version
|
|
203
|
-
if (bindingPackageVersion !== '1.1.
|
|
204
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
203
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
204
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
205
205
|
}
|
|
206
206
|
return binding
|
|
207
207
|
} catch (e) {
|
|
@@ -220,8 +220,8 @@ function requireNative() {
|
|
|
220
220
|
try {
|
|
221
221
|
const binding = require('qrbit-freebsd-x64')
|
|
222
222
|
const bindingPackageVersion = require('qrbit-freebsd-x64/package.json').version
|
|
223
|
-
if (bindingPackageVersion !== '1.1.
|
|
224
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
223
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
224
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
225
225
|
}
|
|
226
226
|
return binding
|
|
227
227
|
} catch (e) {
|
|
@@ -236,8 +236,8 @@ function requireNative() {
|
|
|
236
236
|
try {
|
|
237
237
|
const binding = require('qrbit-freebsd-arm64')
|
|
238
238
|
const bindingPackageVersion = require('qrbit-freebsd-arm64/package.json').version
|
|
239
|
-
if (bindingPackageVersion !== '1.1.
|
|
240
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
239
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
240
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
241
241
|
}
|
|
242
242
|
return binding
|
|
243
243
|
} catch (e) {
|
|
@@ -257,8 +257,8 @@ function requireNative() {
|
|
|
257
257
|
try {
|
|
258
258
|
const binding = require('qrbit-linux-x64-musl')
|
|
259
259
|
const bindingPackageVersion = require('qrbit-linux-x64-musl/package.json').version
|
|
260
|
-
if (bindingPackageVersion !== '1.1.
|
|
261
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
260
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
261
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
262
262
|
}
|
|
263
263
|
return binding
|
|
264
264
|
} catch (e) {
|
|
@@ -273,8 +273,8 @@ function requireNative() {
|
|
|
273
273
|
try {
|
|
274
274
|
const binding = require('qrbit-linux-x64-gnu')
|
|
275
275
|
const bindingPackageVersion = require('qrbit-linux-x64-gnu/package.json').version
|
|
276
|
-
if (bindingPackageVersion !== '1.1.
|
|
277
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
276
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
277
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
278
278
|
}
|
|
279
279
|
return binding
|
|
280
280
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('qrbit-linux-arm64-musl')
|
|
293
293
|
const bindingPackageVersion = require('qrbit-linux-arm64-musl/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '1.1.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
294
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -307,8 +307,8 @@ function requireNative() {
|
|
|
307
307
|
try {
|
|
308
308
|
const binding = require('qrbit-linux-arm64-gnu')
|
|
309
309
|
const bindingPackageVersion = require('qrbit-linux-arm64-gnu/package.json').version
|
|
310
|
-
if (bindingPackageVersion !== '1.1.
|
|
311
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
310
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
311
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
312
312
|
}
|
|
313
313
|
return binding
|
|
314
314
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('qrbit-linux-arm-musleabihf')
|
|
327
327
|
const bindingPackageVersion = require('qrbit-linux-arm-musleabihf/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '1.1.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
328
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -341,8 +341,8 @@ function requireNative() {
|
|
|
341
341
|
try {
|
|
342
342
|
const binding = require('qrbit-linux-arm-gnueabihf')
|
|
343
343
|
const bindingPackageVersion = require('qrbit-linux-arm-gnueabihf/package.json').version
|
|
344
|
-
if (bindingPackageVersion !== '1.1.
|
|
345
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
344
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
345
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
346
346
|
}
|
|
347
347
|
return binding
|
|
348
348
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('qrbit-linux-loong64-musl')
|
|
361
361
|
const bindingPackageVersion = require('qrbit-linux-loong64-musl/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '1.1.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
362
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -375,8 +375,8 @@ function requireNative() {
|
|
|
375
375
|
try {
|
|
376
376
|
const binding = require('qrbit-linux-loong64-gnu')
|
|
377
377
|
const bindingPackageVersion = require('qrbit-linux-loong64-gnu/package.json').version
|
|
378
|
-
if (bindingPackageVersion !== '1.1.
|
|
379
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
378
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
379
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
380
380
|
}
|
|
381
381
|
return binding
|
|
382
382
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('qrbit-linux-riscv64-musl')
|
|
395
395
|
const bindingPackageVersion = require('qrbit-linux-riscv64-musl/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '1.1.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
396
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -409,8 +409,8 @@ function requireNative() {
|
|
|
409
409
|
try {
|
|
410
410
|
const binding = require('qrbit-linux-riscv64-gnu')
|
|
411
411
|
const bindingPackageVersion = require('qrbit-linux-riscv64-gnu/package.json').version
|
|
412
|
-
if (bindingPackageVersion !== '1.1.
|
|
413
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
412
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
413
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
414
414
|
}
|
|
415
415
|
return binding
|
|
416
416
|
} catch (e) {
|
|
@@ -426,8 +426,8 @@ function requireNative() {
|
|
|
426
426
|
try {
|
|
427
427
|
const binding = require('qrbit-linux-ppc64-gnu')
|
|
428
428
|
const bindingPackageVersion = require('qrbit-linux-ppc64-gnu/package.json').version
|
|
429
|
-
if (bindingPackageVersion !== '1.1.
|
|
430
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
429
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
430
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
431
431
|
}
|
|
432
432
|
return binding
|
|
433
433
|
} catch (e) {
|
|
@@ -442,8 +442,8 @@ function requireNative() {
|
|
|
442
442
|
try {
|
|
443
443
|
const binding = require('qrbit-linux-s390x-gnu')
|
|
444
444
|
const bindingPackageVersion = require('qrbit-linux-s390x-gnu/package.json').version
|
|
445
|
-
if (bindingPackageVersion !== '1.1.
|
|
446
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
445
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
446
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
447
447
|
}
|
|
448
448
|
return binding
|
|
449
449
|
} catch (e) {
|
|
@@ -462,8 +462,8 @@ function requireNative() {
|
|
|
462
462
|
try {
|
|
463
463
|
const binding = require('qrbit-openharmony-arm64')
|
|
464
464
|
const bindingPackageVersion = require('qrbit-openharmony-arm64/package.json').version
|
|
465
|
-
if (bindingPackageVersion !== '1.1.
|
|
466
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
465
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
466
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
467
467
|
}
|
|
468
468
|
return binding
|
|
469
469
|
} catch (e) {
|
|
@@ -478,8 +478,8 @@ function requireNative() {
|
|
|
478
478
|
try {
|
|
479
479
|
const binding = require('qrbit-openharmony-x64')
|
|
480
480
|
const bindingPackageVersion = require('qrbit-openharmony-x64/package.json').version
|
|
481
|
-
if (bindingPackageVersion !== '1.1.
|
|
482
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
481
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
482
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
483
483
|
}
|
|
484
484
|
return binding
|
|
485
485
|
} catch (e) {
|
|
@@ -494,8 +494,8 @@ function requireNative() {
|
|
|
494
494
|
try {
|
|
495
495
|
const binding = require('qrbit-openharmony-arm')
|
|
496
496
|
const bindingPackageVersion = require('qrbit-openharmony-arm/package.json').version
|
|
497
|
-
if (bindingPackageVersion !== '1.1.
|
|
498
|
-
throw new Error(`Native binding package version mismatch, expected 1.1.
|
|
497
|
+
if (bindingPackageVersion !== '1.1.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
498
|
+
throw new Error(`Native binding package version mismatch, expected 1.1.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
499
499
|
}
|
|
500
500
|
return binding
|
|
501
501
|
} catch (e) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|