@ledgerhq/react-native-hw-transport-ble 6.27.2-yolo.0 → 6.27.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 +41 -4
- package/package.json +7 -7
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 f8da2821861f2cb0
|
|
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.
|
|
3
|
+
@ledgerhq/react-native-hw-transport-ble:build: > @ledgerhq/react-native-hw-transport-ble@6.27.2 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,6 +1,6 @@
|
|
|
1
1
|
# @ledgerhq/react-native-hw-transport-ble
|
|
2
2
|
|
|
3
|
-
## 6.27.2
|
|
3
|
+
## 6.27.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -33,6 +33,43 @@
|
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
- Updated dependencies [[`203b927b4`](https://github.com/LedgerHQ/ledger-live/commit/203b927b4e5bca3402c85a88c536d519adb18c5f), [`f538d2974`](https://github.com/LedgerHQ/ledger-live/commit/f538d29745669b2aada6ac34f37cd404c23cf1b8)]:
|
|
36
|
-
- @ledgerhq/errors@6.10.1
|
|
37
|
-
- @ledgerhq/devices@7.0.0
|
|
38
|
-
- @ledgerhq/hw-transport@6.27.2
|
|
36
|
+
- @ledgerhq/errors@6.10.1
|
|
37
|
+
- @ledgerhq/devices@7.0.0
|
|
38
|
+
- @ledgerhq/hw-transport@6.27.2
|
|
39
|
+
|
|
40
|
+
## 6.27.2-next.0
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- [#364](https://github.com/LedgerHQ/ledger-live/pull/364) [`f538d2974`](https://github.com/LedgerHQ/ledger-live/commit/f538d29745669b2aada6ac34f37cd404c23cf1b8) Thanks [@elbywan](https://github.com/elbywan)! - #### Replace [webpack](https://webpack.js.org/) with [vite.js](https://vitejs.dev/) to speed up the ledger live desktop development process.
|
|
45
|
+
|
|
46
|
+
To fully embrace the "bundleless" vite.js approach, it is necessary to transpile our packages contained in the monorepository to the ESM format, and [subpath exports](https://nodejs.org/api/packages.html#subpath-exports) have been added to silently map to commonjs or esm depending on the need.
|
|
47
|
+
|
|
48
|
+
#### 🔥 BREAKING CHANGES for `@ledgerhq/live-common`, `@ledgerhq/devices` and `@ledgerhq/hw-app-btc` consumers.
|
|
49
|
+
|
|
50
|
+
As highlighted [here](https://github.com/nodejs/node#39994), it is not possible to target folders directly when using subpath exports.
|
|
51
|
+
|
|
52
|
+
The workaround is to suffix the call with `/index` (or `/`).
|
|
53
|
+
|
|
54
|
+
For instance…
|
|
55
|
+
|
|
56
|
+
```ts
|
|
57
|
+
import * as currencies from "@ledgerhq/live-common/currencies";
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
…must be rewritten to…
|
|
61
|
+
|
|
62
|
+
```ts
|
|
63
|
+
import * as currencies from "@ledgerhq/live-common/currencies/index;";
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
…or:
|
|
67
|
+
|
|
68
|
+
```ts
|
|
69
|
+
import * as currencies from "@ledgerhq/live-common/currencies/;";
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
- Updated dependencies [[`203b927b4`](https://github.com/LedgerHQ/ledger-live/commit/203b927b4e5bca3402c85a88c536d519adb18c5f), [`f538d2974`](https://github.com/LedgerHQ/ledger-live/commit/f538d29745669b2aada6ac34f37cd404c23cf1b8)]:
|
|
73
|
+
- @ledgerhq/errors@6.10.1-next.0
|
|
74
|
+
- @ledgerhq/devices@7.0.0-next.0
|
|
75
|
+
- @ledgerhq/hw-transport@6.27.2-next.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/react-native-hw-transport-ble",
|
|
3
|
-
"version": "6.27.2
|
|
3
|
+
"version": "6.27.2",
|
|
4
4
|
"description": "Ledger Hardware Wallet Bluetooth BLE transport for React Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
],
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/LedgerHQ/
|
|
14
|
+
"url": "https://github.com/LedgerHQ/ledger-live.git"
|
|
15
15
|
},
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/LedgerHQ/
|
|
17
|
+
"url": "https://github.com/LedgerHQ/ledger-live/issues"
|
|
18
18
|
},
|
|
19
|
-
"homepage": "https://github.com/LedgerHQ/ledgerjs",
|
|
19
|
+
"homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/ledgerjs/packages/react-native-hw-transport-ble",
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"types": "lib/BleTransport.d.ts",
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ledgerhq/devices": "^7.0.0
|
|
29
|
-
"@ledgerhq/errors": "^6.10.1
|
|
30
|
-
"@ledgerhq/hw-transport": "^6.27.2
|
|
28
|
+
"@ledgerhq/devices": "^7.0.0",
|
|
29
|
+
"@ledgerhq/errors": "^6.10.1",
|
|
30
|
+
"@ledgerhq/hw-transport": "^6.27.2",
|
|
31
31
|
"@ledgerhq/logs": "^6.10.0",
|
|
32
32
|
"invariant": "^2.2.4",
|
|
33
33
|
"react-native-ble-plx": "2.0.3",
|