@ledgerhq/react-native-hw-transport-ble 6.27.7-nightly.1 → 6.27.7-nightly.2
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +12 -0
- package/README.md +5 -4
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@ledgerhq/react-native-hw-transport-ble:build: cache hit, replaying output
|
|
1
|
+
@ledgerhq/react-native-hw-transport-ble:build: cache hit, replaying output 5dc9a02e168645a3
|
|
2
2
|
@ledgerhq/react-native-hw-transport-ble:build:
|
|
3
|
-
@ledgerhq/react-native-hw-transport-ble:build: > @ledgerhq/react-native-hw-transport-ble@6.27.7-nightly.
|
|
3
|
+
@ledgerhq/react-native-hw-transport-ble:build: > @ledgerhq/react-native-hw-transport-ble@6.27.7-nightly.1 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/react-native-hw-transport-ble
|
|
4
4
|
@ledgerhq/react-native-hw-transport-ble:build: > tsc && tsc -m ES6 --outDir lib-es
|
|
5
5
|
@ledgerhq/react-native-hw-transport-ble:build:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ledgerhq/react-native-hw-transport-ble
|
|
2
2
|
|
|
3
|
+
## 6.27.7-nightly.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1356](https://github.com/LedgerHQ/ledger-live/pull/1356) [`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa) Thanks [@juan-cortes](https://github.com/juan-cortes)! - Updated readme.md of packages
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa)]:
|
|
10
|
+
- @ledgerhq/devices@7.0.2-nightly.2
|
|
11
|
+
- @ledgerhq/errors@6.11.0-nightly.1
|
|
12
|
+
- @ledgerhq/hw-transport@6.27.5-nightly.2
|
|
13
|
+
- @ledgerhq/logs@6.10.1-nightly.1
|
|
14
|
+
|
|
3
15
|
## 6.27.7-nightly.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
<img src="https://user-images.githubusercontent.com/
|
|
1
|
+
<img src="https://user-images.githubusercontent.com/4631227/191834116-59cf590e-25cc-4956-ae5c-812ea464f324.png" height="100" />
|
|
2
2
|
|
|
3
|
-
[
|
|
4
|
-
[Ledger Devs
|
|
3
|
+
[GitHub](https://github.com/LedgerHQ/ledger-live/),
|
|
4
|
+
[Ledger Devs Discord](https://developers.ledger.com/discord-pro),
|
|
5
|
+
[Developer Portal](https://developers.ledger.com/)
|
|
5
6
|
|
|
6
7
|
## @ledgerhq/react-native-hw-transport-ble
|
|
7
8
|
|
|
@@ -14,7 +15,7 @@
|
|
|
14
15
|
|
|
15
16
|
## Are you adding Ledger support to your software wallet?
|
|
16
17
|
|
|
17
|
-
You may be using this package to open a Bluetooth
|
|
18
|
+
You may be using this package to open a Bluetooth connection between your mobile application and the device.
|
|
18
19
|
|
|
19
20
|
For a smooth and quick integration:
|
|
20
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/react-native-hw-transport-ble",
|
|
3
|
-
"version": "6.27.7-nightly.
|
|
3
|
+
"version": "6.27.7-nightly.2",
|
|
4
4
|
"description": "Ledger Hardware Wallet Bluetooth BLE transport for React Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"types": "lib/BleTransport.d.ts",
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ledgerhq/devices": "^7.0.2-nightly.
|
|
29
|
-
"@ledgerhq/errors": "^6.11.0-nightly.
|
|
30
|
-
"@ledgerhq/hw-transport": "^6.27.5-nightly.
|
|
31
|
-
"@ledgerhq/logs": "^6.10.1-nightly.
|
|
28
|
+
"@ledgerhq/devices": "^7.0.2-nightly.2",
|
|
29
|
+
"@ledgerhq/errors": "^6.11.0-nightly.1",
|
|
30
|
+
"@ledgerhq/hw-transport": "^6.27.5-nightly.2",
|
|
31
|
+
"@ledgerhq/logs": "^6.10.1-nightly.1",
|
|
32
32
|
"invariant": "^2.2.4",
|
|
33
33
|
"react-native-ble-plx": "2.0.3",
|
|
34
34
|
"rxjs": "6",
|