@ledgerhq/coin-ton 0.12.0-next.2 → 0.12.1-next.0
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 +1 -1
- package/CHANGELOG.md +26 -0
- package/jest.config.js +2 -5
- package/package.json +9 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/coin-ton@0.12.0
|
|
2
|
+
> @ledgerhq/coin-ton@0.12.0 build /home/runner/work/ledger-live/ledger-live/libs/coin-modules/coin-ton
|
|
3
3
|
> tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
|
|
4
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @ledgerhq/coin-ton
|
|
2
2
|
|
|
3
|
+
## 0.12.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`8551c28`](https://github.com/LedgerHQ/ledger-live/commit/8551c280f24f7bd4475c6cc12f1b1d92636d9357), [`18bc0d4`](https://github.com/LedgerHQ/ledger-live/commit/18bc0d4a27696491400df6ce26b915a88b56792f), [`b7d3d59`](https://github.com/LedgerHQ/ledger-live/commit/b7d3d59d299c3d3541d598536651b9047fda4526), [`e04d215`](https://github.com/LedgerHQ/ledger-live/commit/e04d21576919fa21cb3ab6e1c4e8e50fb6c17eca), [`1535307`](https://github.com/LedgerHQ/ledger-live/commit/1535307f78d345d7f652ac2c91c8a67e62fedef2)]:
|
|
8
|
+
- @ledgerhq/live-env@2.10.0-next.0
|
|
9
|
+
- @ledgerhq/coin-framework@5.3.0-next.0
|
|
10
|
+
- @ledgerhq/types-live@6.73.0-next.0
|
|
11
|
+
- @ledgerhq/cryptoassets@13.18.1-next.0
|
|
12
|
+
- @ledgerhq/live-network@2.0.10-next.0
|
|
13
|
+
|
|
14
|
+
## 0.12.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- [#10256](https://github.com/LedgerHQ/ledger-live/pull/10256) [`150ac67`](https://github.com/LedgerHQ/ledger-live/commit/150ac67c38c0ce43dd0632a71467f49a81068b94) Thanks [@Canestin](https://github.com/Canestin)! - feat: show ton tokens in swap history
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`4ddfe60`](https://github.com/LedgerHQ/ledger-live/commit/4ddfe6060ab8e4e5c0bb89da91e08a02d8ca50e6), [`f42f353`](https://github.com/LedgerHQ/ledger-live/commit/f42f353a593d0a1cd0a237648765080c85d0eea7), [`ebbbd47`](https://github.com/LedgerHQ/ledger-live/commit/ebbbd47efe76d82047a956cb5849be5831f58772), [`f29e4ba`](https://github.com/LedgerHQ/ledger-live/commit/f29e4bae00a4bf470a0c1ca143e505b731543f95), [`1a4e5e5`](https://github.com/LedgerHQ/ledger-live/commit/1a4e5e5913fe5e12d6127b36f3849e4c81e5e50e)]:
|
|
23
|
+
- @ledgerhq/types-live@6.72.0
|
|
24
|
+
- @ledgerhq/coin-framework@5.2.0
|
|
25
|
+
- @ledgerhq/logs@6.13.0
|
|
26
|
+
- @ledgerhq/devices@8.4.6
|
|
27
|
+
- @ledgerhq/live-network@2.0.9
|
|
28
|
+
|
|
3
29
|
## 0.12.0-next.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/jest.config.js
CHANGED
|
@@ -7,7 +7,7 @@ module.exports = {
|
|
|
7
7
|
"!src/**/*.spec.ts",
|
|
8
8
|
"!src/test/**/*.ts",
|
|
9
9
|
],
|
|
10
|
-
coverageReporters: ["json", ["lcov", { file: "
|
|
10
|
+
coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"],
|
|
11
11
|
prettierPath: null,
|
|
12
12
|
preset: "ts-jest",
|
|
13
13
|
testEnvironment: "node",
|
|
@@ -18,10 +18,7 @@ module.exports = {
|
|
|
18
18
|
],
|
|
19
19
|
reporters: [
|
|
20
20
|
"default",
|
|
21
|
-
[
|
|
22
|
-
"jest-sonar",
|
|
23
|
-
{ outputName: "ton-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
|
|
24
|
-
],
|
|
21
|
+
["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }],
|
|
25
22
|
],
|
|
26
23
|
// setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"],
|
|
27
24
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-ton",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1-next.0",
|
|
4
4
|
"description": "Ton Coin integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"lodash": "^4.17.21",
|
|
55
55
|
"msw": "^2.0.11",
|
|
56
56
|
"rxjs": "^7.8.1",
|
|
57
|
-
"@ledgerhq/coin-framework": "^5.
|
|
58
|
-
"@ledgerhq/cryptoassets": "^13.18.0",
|
|
59
|
-
"@ledgerhq/devices": "8.4.6
|
|
60
|
-
"@ledgerhq/
|
|
61
|
-
"@ledgerhq/live-
|
|
62
|
-
"@ledgerhq/
|
|
63
|
-
"@ledgerhq/logs": "^6.13.0-next.1",
|
|
57
|
+
"@ledgerhq/coin-framework": "^5.3.0-next.0",
|
|
58
|
+
"@ledgerhq/cryptoassets": "^13.18.1-next.0",
|
|
59
|
+
"@ledgerhq/devices": "8.4.6",
|
|
60
|
+
"@ledgerhq/live-env": "^2.10.0-next.0",
|
|
61
|
+
"@ledgerhq/live-network": "^2.0.10-next.0",
|
|
62
|
+
"@ledgerhq/logs": "^6.13.0",
|
|
64
63
|
"@ledgerhq/types-cryptoassets": "^7.23.0",
|
|
65
|
-
"@ledgerhq/types-live": "^6.
|
|
64
|
+
"@ledgerhq/types-live": "^6.73.0-next.0",
|
|
65
|
+
"@ledgerhq/errors": "^6.21.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@types/imurmurhash": "^0.1.4",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"@types/jest": "^29.5.10",
|
|
71
71
|
"@types/lodash": "^4.14.191",
|
|
72
72
|
"jest": "^29.7.0",
|
|
73
|
-
"jest-sonar": "0.2.16",
|
|
74
73
|
"ts-jest": "^29.1.1",
|
|
75
74
|
"@ledgerhq/disable-network-setup": "^0.0.0"
|
|
76
75
|
},
|