@onekeyfe/hardware-cli 1.2.2-alpha.7 → 1.2.2-alpha.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onekeyfe/hardware-cli",
|
|
3
|
-
"version": "1.2.2-alpha.
|
|
3
|
+
"version": "1.2.2-alpha.8",
|
|
4
4
|
"description": "OneKey hardware wallet CLI for testing device communication",
|
|
5
5
|
"author": "OneKey",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"test": "jest"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@onekeyfe/hd-common-connect-sdk": "1.2.2-alpha.
|
|
35
|
-
"@onekeyfe/hd-core": "1.2.2-alpha.
|
|
36
|
-
"@onekeyfe/hd-shared": "1.2.2-alpha.
|
|
37
|
-
"@onekeyfe/hd-transport-usb": "1.2.2-alpha.
|
|
34
|
+
"@onekeyfe/hd-common-connect-sdk": "1.2.2-alpha.8",
|
|
35
|
+
"@onekeyfe/hd-core": "1.2.2-alpha.8",
|
|
36
|
+
"@onekeyfe/hd-shared": "1.2.2-alpha.8",
|
|
37
|
+
"@onekeyfe/hd-transport-usb": "1.2.2-alpha.8",
|
|
38
38
|
"@stoprocent/noble": "2.3.16",
|
|
39
39
|
"commander": "^12.0.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "7a5d129ea1db0b3eb230e309ab29ed3e9e7f141e"
|
|
42
42
|
}
|
|
@@ -388,7 +388,7 @@ describe('Noble BLE plugin notification routing', () => {
|
|
|
388
388
|
|
|
389
389
|
test('uses the connected peripheral write capacity without padding', async () => {
|
|
390
390
|
const device = createPeripheral('device-a');
|
|
391
|
-
device.peripheral.mtu = 244;
|
|
391
|
+
device.peripheral.mtu = process.platform === 'linux' ? 247 : 244;
|
|
392
392
|
const noble = new EventEmitter() as EventEmitter & {
|
|
393
393
|
state: string;
|
|
394
394
|
startScanning: jest.Mock;
|