@ledgerhq/device-core 0.10.1 → 0.10.2-nightly.20260505134028
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/CHANGELOG.md +11 -0
- package/jest.config.js +19 -0
- package/package.json +6 -6
- package/jest.config.json +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @ledgerhq/device-core
|
|
2
2
|
|
|
3
|
+
## 0.10.2-nightly.20260505134028
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`ed0dc8a`](https://github.com/LedgerHQ/ledger-live/commit/ed0dc8abc2c8f5054e655c4e12efe6fb433fbaca), [`4ddd97a`](https://github.com/LedgerHQ/ledger-live/commit/4ddd97a99bab5b581ad5ccfd36eb420ec4ee6352), [`7fafa10`](https://github.com/LedgerHQ/ledger-live/commit/7fafa10d8af581f4433a60ea908980a726d3a777), [`ac26c8b`](https://github.com/LedgerHQ/ledger-live/commit/ac26c8bffa9b5cc9f28bed5ce3d44e32982d655c), [`fb79639`](https://github.com/LedgerHQ/ledger-live/commit/fb79639eb81258bae4830ed6ffe375ae625054ad), [`321a0e2`](https://github.com/LedgerHQ/ledger-live/commit/321a0e2ce948fac11f7bdf0e106eb0af57168caa), [`d308b1a`](https://github.com/LedgerHQ/ledger-live/commit/d308b1a6b9c629839f051cf367a527f4232120c7), [`21e69fe`](https://github.com/LedgerHQ/ledger-live/commit/21e69fea49cffc0b1204903e539a64b83e4b28f0), [`fb4d165`](https://github.com/LedgerHQ/ledger-live/commit/fb4d1656be8dc8e933e55600970a2e991fbaeebb), [`5bd95a9`](https://github.com/LedgerHQ/ledger-live/commit/5bd95a9ceaac4d08c87d635f721265357368f8ee), [`73bfe05`](https://github.com/LedgerHQ/ledger-live/commit/73bfe055ec23e0d630f2da9f4dbc9731b6fe5190)]:
|
|
8
|
+
- @ledgerhq/types-live@6.107.0-nightly.20260505134028
|
|
9
|
+
- @ledgerhq/errors@6.35.0-nightly.20260505134028
|
|
10
|
+
- @ledgerhq/live-network@2.6.0-nightly.20260505134028
|
|
11
|
+
- @ledgerhq/devices@8.14.2-nightly.20260505134028
|
|
12
|
+
- @ledgerhq/hw-transport@6.35.2-nightly.20260505134028
|
|
13
|
+
|
|
3
14
|
## 0.10.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/jest.config.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
transform: {
|
|
3
|
+
"^.+\\.(t|j)sx?$": [
|
|
4
|
+
"@swc/jest",
|
|
5
|
+
{
|
|
6
|
+
jsc: {
|
|
7
|
+
target: "esnext",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
],
|
|
11
|
+
},
|
|
12
|
+
testPathIgnorePatterns: ["lib/", "lib-es/"],
|
|
13
|
+
coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../" }], "text"],
|
|
14
|
+
reporters: [
|
|
15
|
+
"default",
|
|
16
|
+
...(process.env.CI ? ["github-actions"] : []),
|
|
17
|
+
["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }],
|
|
18
|
+
],
|
|
19
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/device-core",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2-nightly.20260505134028",
|
|
4
4
|
"description": "Ledger Live device core module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@noble/hashes": "1.8.0",
|
|
22
22
|
"semver": "7.7.3",
|
|
23
|
-
"@ledgerhq/devices": "8.14.
|
|
24
|
-
"@ledgerhq/errors": "^6.
|
|
25
|
-
"@ledgerhq/hw-transport": "6.35.
|
|
26
|
-
"@ledgerhq/live-network": "^2.
|
|
23
|
+
"@ledgerhq/devices": "8.14.2-nightly.20260505134028",
|
|
24
|
+
"@ledgerhq/errors": "^6.35.0-nightly.20260505134028",
|
|
25
|
+
"@ledgerhq/hw-transport": "6.35.2-nightly.20260505134028",
|
|
26
|
+
"@ledgerhq/live-network": "^2.6.0-nightly.20260505134028",
|
|
27
27
|
"@ledgerhq/logs": "^6.17.0",
|
|
28
|
-
"@ledgerhq/types-live": "^6.
|
|
28
|
+
"@ledgerhq/types-live": "^6.107.0-nightly.20260505134028"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@testing-library/dom": "10.4.1",
|
package/jest.config.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"transform": {
|
|
3
|
-
"^.+\\.(t|j)sx?$": [
|
|
4
|
-
"@swc/jest",
|
|
5
|
-
{
|
|
6
|
-
"jsc": {
|
|
7
|
-
"target": "esnext"
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"testPathIgnorePatterns": ["lib/", "lib-es/"],
|
|
13
|
-
"coverageReporters": ["json", ["lcov", { "file": "lcov.info", "projectRoot": "../../" }], "text"],
|
|
14
|
-
"reporters": [
|
|
15
|
-
"default",
|
|
16
|
-
["jest-sonar", { "outputName": "sonar-executionTests-report.xml", "reportedFilePath": "absolute" }]
|
|
17
|
-
]
|
|
18
|
-
}
|