qrbit 1.3.0 → 1.3.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 +53 -56
- package/dist/native.js +53 -53
- 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 +12 -12
package/dist/native.cjs
CHANGED
|
@@ -3,9 +3,6 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
|
-
const { createRequire } = require('node:module')
|
|
7
|
-
require = createRequire(__filename)
|
|
8
|
-
|
|
9
6
|
const { readFileSync } = require('node:fs')
|
|
10
7
|
let nativeBinding = null
|
|
11
8
|
const loadErrors = []
|
|
@@ -80,8 +77,8 @@ function requireNative() {
|
|
|
80
77
|
try {
|
|
81
78
|
const binding = require('qrbit-android-arm64')
|
|
82
79
|
const bindingPackageVersion = require('qrbit-android-arm64/package.json').version
|
|
83
|
-
if (bindingPackageVersion !== '1.3.
|
|
84
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
80
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
85
82
|
}
|
|
86
83
|
return binding
|
|
87
84
|
} catch (e) {
|
|
@@ -96,8 +93,8 @@ function requireNative() {
|
|
|
96
93
|
try {
|
|
97
94
|
const binding = require('qrbit-android-arm-eabi')
|
|
98
95
|
const bindingPackageVersion = require('qrbit-android-arm-eabi/package.json').version
|
|
99
|
-
if (bindingPackageVersion !== '1.3.
|
|
100
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
96
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
101
98
|
}
|
|
102
99
|
return binding
|
|
103
100
|
} catch (e) {
|
|
@@ -108,7 +105,7 @@ function requireNative() {
|
|
|
108
105
|
}
|
|
109
106
|
} else if (process.platform === 'win32') {
|
|
110
107
|
if (process.arch === 'x64') {
|
|
111
|
-
if (process.
|
|
108
|
+
if (process.config?.variables?.shlib_suffix === 'dll.a' || process.config?.variables?.node_target_type === 'shared_library') {
|
|
112
109
|
try {
|
|
113
110
|
return require('./qrbit.win32-x64-gnu.node')
|
|
114
111
|
} catch (e) {
|
|
@@ -117,8 +114,8 @@ function requireNative() {
|
|
|
117
114
|
try {
|
|
118
115
|
const binding = require('qrbit-win32-x64-gnu')
|
|
119
116
|
const bindingPackageVersion = require('qrbit-win32-x64-gnu/package.json').version
|
|
120
|
-
if (bindingPackageVersion !== '1.3.
|
|
121
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
117
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
122
119
|
}
|
|
123
120
|
return binding
|
|
124
121
|
} catch (e) {
|
|
@@ -133,8 +130,8 @@ function requireNative() {
|
|
|
133
130
|
try {
|
|
134
131
|
const binding = require('qrbit-win32-x64-msvc')
|
|
135
132
|
const bindingPackageVersion = require('qrbit-win32-x64-msvc/package.json').version
|
|
136
|
-
if (bindingPackageVersion !== '1.3.
|
|
137
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
133
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
138
135
|
}
|
|
139
136
|
return binding
|
|
140
137
|
} catch (e) {
|
|
@@ -150,8 +147,8 @@ function requireNative() {
|
|
|
150
147
|
try {
|
|
151
148
|
const binding = require('qrbit-win32-ia32-msvc')
|
|
152
149
|
const bindingPackageVersion = require('qrbit-win32-ia32-msvc/package.json').version
|
|
153
|
-
if (bindingPackageVersion !== '1.3.
|
|
154
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
150
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
155
152
|
}
|
|
156
153
|
return binding
|
|
157
154
|
} catch (e) {
|
|
@@ -166,8 +163,8 @@ function requireNative() {
|
|
|
166
163
|
try {
|
|
167
164
|
const binding = require('qrbit-win32-arm64-msvc')
|
|
168
165
|
const bindingPackageVersion = require('qrbit-win32-arm64-msvc/package.json').version
|
|
169
|
-
if (bindingPackageVersion !== '1.3.
|
|
170
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
166
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
171
168
|
}
|
|
172
169
|
return binding
|
|
173
170
|
} catch (e) {
|
|
@@ -185,8 +182,8 @@ function requireNative() {
|
|
|
185
182
|
try {
|
|
186
183
|
const binding = require('qrbit-darwin-universal')
|
|
187
184
|
const bindingPackageVersion = require('qrbit-darwin-universal/package.json').version
|
|
188
|
-
if (bindingPackageVersion !== '1.3.
|
|
189
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
185
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
190
187
|
}
|
|
191
188
|
return binding
|
|
192
189
|
} catch (e) {
|
|
@@ -201,8 +198,8 @@ function requireNative() {
|
|
|
201
198
|
try {
|
|
202
199
|
const binding = require('qrbit-darwin-x64')
|
|
203
200
|
const bindingPackageVersion = require('qrbit-darwin-x64/package.json').version
|
|
204
|
-
if (bindingPackageVersion !== '1.3.
|
|
205
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
201
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
206
203
|
}
|
|
207
204
|
return binding
|
|
208
205
|
} catch (e) {
|
|
@@ -217,8 +214,8 @@ function requireNative() {
|
|
|
217
214
|
try {
|
|
218
215
|
const binding = require('qrbit-darwin-arm64')
|
|
219
216
|
const bindingPackageVersion = require('qrbit-darwin-arm64/package.json').version
|
|
220
|
-
if (bindingPackageVersion !== '1.3.
|
|
221
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
217
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
222
219
|
}
|
|
223
220
|
return binding
|
|
224
221
|
} catch (e) {
|
|
@@ -237,8 +234,8 @@ function requireNative() {
|
|
|
237
234
|
try {
|
|
238
235
|
const binding = require('qrbit-freebsd-x64')
|
|
239
236
|
const bindingPackageVersion = require('qrbit-freebsd-x64/package.json').version
|
|
240
|
-
if (bindingPackageVersion !== '1.3.
|
|
241
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
237
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
242
239
|
}
|
|
243
240
|
return binding
|
|
244
241
|
} catch (e) {
|
|
@@ -253,8 +250,8 @@ function requireNative() {
|
|
|
253
250
|
try {
|
|
254
251
|
const binding = require('qrbit-freebsd-arm64')
|
|
255
252
|
const bindingPackageVersion = require('qrbit-freebsd-arm64/package.json').version
|
|
256
|
-
if (bindingPackageVersion !== '1.3.
|
|
257
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
253
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
258
255
|
}
|
|
259
256
|
return binding
|
|
260
257
|
} catch (e) {
|
|
@@ -274,8 +271,8 @@ function requireNative() {
|
|
|
274
271
|
try {
|
|
275
272
|
const binding = require('qrbit-linux-x64-musl')
|
|
276
273
|
const bindingPackageVersion = require('qrbit-linux-x64-musl/package.json').version
|
|
277
|
-
if (bindingPackageVersion !== '1.3.
|
|
278
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
274
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
279
276
|
}
|
|
280
277
|
return binding
|
|
281
278
|
} catch (e) {
|
|
@@ -290,8 +287,8 @@ function requireNative() {
|
|
|
290
287
|
try {
|
|
291
288
|
const binding = require('qrbit-linux-x64-gnu')
|
|
292
289
|
const bindingPackageVersion = require('qrbit-linux-x64-gnu/package.json').version
|
|
293
|
-
if (bindingPackageVersion !== '1.3.
|
|
294
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
290
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
295
292
|
}
|
|
296
293
|
return binding
|
|
297
294
|
} catch (e) {
|
|
@@ -308,8 +305,8 @@ function requireNative() {
|
|
|
308
305
|
try {
|
|
309
306
|
const binding = require('qrbit-linux-arm64-musl')
|
|
310
307
|
const bindingPackageVersion = require('qrbit-linux-arm64-musl/package.json').version
|
|
311
|
-
if (bindingPackageVersion !== '1.3.
|
|
312
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
308
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
313
310
|
}
|
|
314
311
|
return binding
|
|
315
312
|
} catch (e) {
|
|
@@ -324,8 +321,8 @@ function requireNative() {
|
|
|
324
321
|
try {
|
|
325
322
|
const binding = require('qrbit-linux-arm64-gnu')
|
|
326
323
|
const bindingPackageVersion = require('qrbit-linux-arm64-gnu/package.json').version
|
|
327
|
-
if (bindingPackageVersion !== '1.3.
|
|
328
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
324
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
329
326
|
}
|
|
330
327
|
return binding
|
|
331
328
|
} catch (e) {
|
|
@@ -342,8 +339,8 @@ function requireNative() {
|
|
|
342
339
|
try {
|
|
343
340
|
const binding = require('qrbit-linux-arm-musleabihf')
|
|
344
341
|
const bindingPackageVersion = require('qrbit-linux-arm-musleabihf/package.json').version
|
|
345
|
-
if (bindingPackageVersion !== '1.3.
|
|
346
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
342
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
347
344
|
}
|
|
348
345
|
return binding
|
|
349
346
|
} catch (e) {
|
|
@@ -358,8 +355,8 @@ function requireNative() {
|
|
|
358
355
|
try {
|
|
359
356
|
const binding = require('qrbit-linux-arm-gnueabihf')
|
|
360
357
|
const bindingPackageVersion = require('qrbit-linux-arm-gnueabihf/package.json').version
|
|
361
|
-
if (bindingPackageVersion !== '1.3.
|
|
362
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
358
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
363
360
|
}
|
|
364
361
|
return binding
|
|
365
362
|
} catch (e) {
|
|
@@ -376,8 +373,8 @@ function requireNative() {
|
|
|
376
373
|
try {
|
|
377
374
|
const binding = require('qrbit-linux-loong64-musl')
|
|
378
375
|
const bindingPackageVersion = require('qrbit-linux-loong64-musl/package.json').version
|
|
379
|
-
if (bindingPackageVersion !== '1.3.
|
|
380
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
376
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
381
378
|
}
|
|
382
379
|
return binding
|
|
383
380
|
} catch (e) {
|
|
@@ -392,8 +389,8 @@ function requireNative() {
|
|
|
392
389
|
try {
|
|
393
390
|
const binding = require('qrbit-linux-loong64-gnu')
|
|
394
391
|
const bindingPackageVersion = require('qrbit-linux-loong64-gnu/package.json').version
|
|
395
|
-
if (bindingPackageVersion !== '1.3.
|
|
396
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
392
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
397
394
|
}
|
|
398
395
|
return binding
|
|
399
396
|
} catch (e) {
|
|
@@ -410,8 +407,8 @@ function requireNative() {
|
|
|
410
407
|
try {
|
|
411
408
|
const binding = require('qrbit-linux-riscv64-musl')
|
|
412
409
|
const bindingPackageVersion = require('qrbit-linux-riscv64-musl/package.json').version
|
|
413
|
-
if (bindingPackageVersion !== '1.3.
|
|
414
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
410
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
415
412
|
}
|
|
416
413
|
return binding
|
|
417
414
|
} catch (e) {
|
|
@@ -426,8 +423,8 @@ function requireNative() {
|
|
|
426
423
|
try {
|
|
427
424
|
const binding = require('qrbit-linux-riscv64-gnu')
|
|
428
425
|
const bindingPackageVersion = require('qrbit-linux-riscv64-gnu/package.json').version
|
|
429
|
-
if (bindingPackageVersion !== '1.3.
|
|
430
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
426
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
431
428
|
}
|
|
432
429
|
return binding
|
|
433
430
|
} catch (e) {
|
|
@@ -443,8 +440,8 @@ function requireNative() {
|
|
|
443
440
|
try {
|
|
444
441
|
const binding = require('qrbit-linux-ppc64-gnu')
|
|
445
442
|
const bindingPackageVersion = require('qrbit-linux-ppc64-gnu/package.json').version
|
|
446
|
-
if (bindingPackageVersion !== '1.3.
|
|
447
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
443
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
448
445
|
}
|
|
449
446
|
return binding
|
|
450
447
|
} catch (e) {
|
|
@@ -459,8 +456,8 @@ function requireNative() {
|
|
|
459
456
|
try {
|
|
460
457
|
const binding = require('qrbit-linux-s390x-gnu')
|
|
461
458
|
const bindingPackageVersion = require('qrbit-linux-s390x-gnu/package.json').version
|
|
462
|
-
if (bindingPackageVersion !== '1.3.
|
|
463
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
459
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
464
461
|
}
|
|
465
462
|
return binding
|
|
466
463
|
} catch (e) {
|
|
@@ -479,8 +476,8 @@ function requireNative() {
|
|
|
479
476
|
try {
|
|
480
477
|
const binding = require('qrbit-openharmony-arm64')
|
|
481
478
|
const bindingPackageVersion = require('qrbit-openharmony-arm64/package.json').version
|
|
482
|
-
if (bindingPackageVersion !== '1.3.
|
|
483
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
479
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
484
481
|
}
|
|
485
482
|
return binding
|
|
486
483
|
} catch (e) {
|
|
@@ -495,8 +492,8 @@ function requireNative() {
|
|
|
495
492
|
try {
|
|
496
493
|
const binding = require('qrbit-openharmony-x64')
|
|
497
494
|
const bindingPackageVersion = require('qrbit-openharmony-x64/package.json').version
|
|
498
|
-
if (bindingPackageVersion !== '1.3.
|
|
499
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
495
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
500
497
|
}
|
|
501
498
|
return binding
|
|
502
499
|
} catch (e) {
|
|
@@ -511,8 +508,8 @@ function requireNative() {
|
|
|
511
508
|
try {
|
|
512
509
|
const binding = require('qrbit-openharmony-arm')
|
|
513
510
|
const bindingPackageVersion = require('qrbit-openharmony-arm/package.json').version
|
|
514
|
-
if (bindingPackageVersion !== '1.3.
|
|
515
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
511
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
516
513
|
}
|
|
517
514
|
return binding
|
|
518
515
|
} 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.3.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
84
|
+
if (bindingPackageVersion !== '1.3.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.3.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.3.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
100
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -109,7 +109,7 @@ function requireNative() {
|
|
|
109
109
|
}
|
|
110
110
|
} else if (process.platform === 'win32') {
|
|
111
111
|
if (process.arch === 'x64') {
|
|
112
|
-
if (process.
|
|
112
|
+
if (process.config?.variables?.shlib_suffix === 'dll.a' || process.config?.variables?.node_target_type === 'shared_library') {
|
|
113
113
|
try {
|
|
114
114
|
return require('./qrbit.win32-x64-gnu.node')
|
|
115
115
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('qrbit-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('qrbit-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '1.3.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
121
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('qrbit-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('qrbit-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '1.3.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
137
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('qrbit-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('qrbit-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '1.3.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
154
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('qrbit-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('qrbit-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '1.3.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
170
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('qrbit-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('qrbit-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '1.3.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
189
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('qrbit-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('qrbit-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '1.3.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
205
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('qrbit-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('qrbit-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '1.3.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
221
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('qrbit-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('qrbit-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '1.3.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
241
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('qrbit-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('qrbit-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '1.3.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
257
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('qrbit-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('qrbit-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '1.3.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
278
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('qrbit-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('qrbit-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '1.3.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
294
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('qrbit-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('qrbit-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '1.3.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
312
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('qrbit-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('qrbit-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '1.3.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
328
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('qrbit-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('qrbit-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '1.3.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
346
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('qrbit-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('qrbit-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '1.3.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
362
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('qrbit-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('qrbit-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '1.3.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
380
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('qrbit-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('qrbit-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '1.3.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
396
|
+
if (bindingPackageVersion !== '1.3.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.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('qrbit-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('qrbit-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '1.3.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
414
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('qrbit-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('qrbit-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '1.3.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
430
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('qrbit-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('qrbit-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '1.3.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
447
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('qrbit-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('qrbit-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '1.3.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
463
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('qrbit-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('qrbit-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '1.3.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
483
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('qrbit-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('qrbit-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '1.3.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
499
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('qrbit-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('qrbit-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '1.3.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 1.3.
|
|
515
|
+
if (bindingPackageVersion !== '1.3.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 1.3.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qrbit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "A fast QR code generator with logo embedding support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/qrbit.cjs",
|
|
@@ -41,20 +41,20 @@
|
|
|
41
41
|
"version": "napi version"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@biomejs/biome": "^2.
|
|
45
|
-
"@faker-js/faker": "^10.
|
|
44
|
+
"@biomejs/biome": "^2.3.3",
|
|
45
|
+
"@faker-js/faker": "^10.1.0",
|
|
46
46
|
"@loskir/styled-qr-code-node": "^1.5.2",
|
|
47
47
|
"@monstermann/tinybench-pretty-printer": "^0.2.0",
|
|
48
|
-
"@napi-rs/cli": "^3.
|
|
49
|
-
"@types/node": "^24.
|
|
50
|
-
"@types/qrcode": "^1.5.
|
|
51
|
-
"@vitest/coverage-v8": "^
|
|
52
|
-
"rimraf": "^6.0
|
|
53
|
-
"tinybench": "^5.0
|
|
48
|
+
"@napi-rs/cli": "^3.4.1",
|
|
49
|
+
"@types/node": "^24.10.0",
|
|
50
|
+
"@types/qrcode": "^1.5.6",
|
|
51
|
+
"@vitest/coverage-v8": "^4.0.6",
|
|
52
|
+
"rimraf": "^6.1.0",
|
|
53
|
+
"tinybench": "^5.1.0",
|
|
54
54
|
"tsup": "^8.5.0",
|
|
55
55
|
"tsx": "^4.20.6",
|
|
56
56
|
"typescript": "^5.9.3",
|
|
57
|
-
"vitest": "^
|
|
57
|
+
"vitest": "^4.0.6"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
]
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"cacheable": "^2.1.
|
|
96
|
-
"hookified": "^1.12.
|
|
95
|
+
"cacheable": "^2.1.1",
|
|
96
|
+
"hookified": "^1.12.2",
|
|
97
97
|
"qrcode": "^1.5.4"
|
|
98
98
|
}
|
|
99
99
|
}
|