@ledgerhq/coin-vechain 2.5.1 → 2.6.0-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/CHANGELOG.md +14 -0
- package/jest.config.js +17 -3
- package/jest.integ.config.js +7 -0
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @ledgerhq/coin-evm
|
|
2
2
|
|
|
3
|
+
## 2.6.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#9298](https://github.com/LedgerHQ/ledger-live/pull/9298) [`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1) Thanks [@Canestin](https://github.com/Canestin)! - config coin-integration env for sonarqube
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1), [`32f2a0c`](https://github.com/LedgerHQ/ledger-live/commit/32f2a0cf073e5c1a5d65cbe44e69660f8f510dd7), [`40e98c3`](https://github.com/LedgerHQ/ledger-live/commit/40e98c392bd9192570e46c2d62cf0779bdfe01ec), [`a656e47`](https://github.com/LedgerHQ/ledger-live/commit/a656e47c1dc3ac8b578debf9cf80eab370c7086f)]:
|
|
12
|
+
- @ledgerhq/coin-framework@2.5.0-next.0
|
|
13
|
+
- @ledgerhq/live-env@2.7.0-next.0
|
|
14
|
+
- @ledgerhq/cryptoassets@13.14.0-next.0
|
|
15
|
+
- @ledgerhq/live-network@2.0.6-next.0
|
|
16
|
+
|
|
3
17
|
## 2.5.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/jest.config.js
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
/** @type {import('ts-jest/dist/types').JestConfigWithTsJest} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
passWithNoTests: true,
|
|
4
|
+
collectCoverageFrom: [
|
|
5
|
+
"src/**/*.ts",
|
|
6
|
+
"!src/**/*.test.ts",
|
|
7
|
+
"!src/**/*.spec.ts",
|
|
8
|
+
"!src/test/**/*.ts",
|
|
9
|
+
"!src/datasets/**/*.ts",
|
|
10
|
+
"!src/__snapshots__/**/*.ts",
|
|
11
|
+
],
|
|
12
|
+
coverageReporters: ["json", ["lcov", { file: "vechain-lcov.info", projectRoot: "../" }], "text"],
|
|
5
13
|
preset: "ts-jest",
|
|
6
14
|
testEnvironment: "node",
|
|
7
|
-
testPathIgnorePatterns: ["lib/", "lib-es/"],
|
|
15
|
+
testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
|
|
16
|
+
reporters: [
|
|
17
|
+
[
|
|
18
|
+
"jest-sonar",
|
|
19
|
+
{ outputName: "vechain-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
|
|
20
|
+
],
|
|
21
|
+
],
|
|
8
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-vechain",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0-next.0",
|
|
4
4
|
"description": "Ledger VeChain Coin integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"lodash": "^4.17.21",
|
|
86
86
|
"rxjs": "^7.8.1",
|
|
87
87
|
"thor-devkit": "^2.0.6",
|
|
88
|
-
"@ledgerhq/
|
|
89
|
-
"@ledgerhq/
|
|
88
|
+
"@ledgerhq/coin-framework": "^2.5.0-next.0",
|
|
89
|
+
"@ledgerhq/cryptoassets": "^13.14.0-next.0",
|
|
90
90
|
"@ledgerhq/devices": "^8.4.4",
|
|
91
|
-
"@ledgerhq/live-env": "^2.6.0",
|
|
92
91
|
"@ledgerhq/errors": "^6.19.1",
|
|
93
|
-
"@ledgerhq/live-
|
|
92
|
+
"@ledgerhq/live-env": "^2.7.0-next.0",
|
|
93
|
+
"@ledgerhq/live-network": "^2.0.6-next.0"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@types/invariant": "^2.2.2",
|
|
@@ -98,15 +98,16 @@
|
|
|
98
98
|
"@types/lodash": "^4.14.191",
|
|
99
99
|
"dotenv": "^16.4.5",
|
|
100
100
|
"jest": "^29.7.0",
|
|
101
|
+
"jest-sonar": "0.2.16",
|
|
101
102
|
"ts-jest": "^29.1.1",
|
|
102
103
|
"@ledgerhq/coin-tester": "^0.4.0",
|
|
103
|
-
"@ledgerhq/types-cryptoassets": "^7.
|
|
104
|
-
"@ledgerhq/types-live": "^6.
|
|
104
|
+
"@ledgerhq/types-cryptoassets": "^7.21.0-next.0",
|
|
105
|
+
"@ledgerhq/types-live": "^6.65.0-next.0"
|
|
105
106
|
},
|
|
106
107
|
"scripts": {
|
|
107
108
|
"clean": "rimraf lib lib-es",
|
|
108
109
|
"build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
|
|
109
|
-
"coverage": "jest --coverage
|
|
110
|
+
"coverage": "jest --coverage",
|
|
110
111
|
"prewatch": "pnpm build",
|
|
111
112
|
"watch": "tsc --watch",
|
|
112
113
|
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
|
|
@@ -114,7 +115,7 @@
|
|
|
114
115
|
"lint:fix": "pnpm lint --fix",
|
|
115
116
|
"typecheck": "tsc --noEmit",
|
|
116
117
|
"test": "jest --passWithNoTests",
|
|
117
|
-
"test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js",
|
|
118
|
+
"test-integ": "DOTENV_CONFIG_PATH=.env.integ.test jest --config=jest.integ.config.js --passWithNoTests",
|
|
118
119
|
"unimported": "unimported"
|
|
119
120
|
}
|
|
120
121
|
}
|