@ledgerhq/coin-casper 1.5.1 → 1.5.2-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 +11 -0
- package/jest.config.js +16 -3
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @ledgerhq/coin-casper
|
|
2
2
|
|
|
3
|
+
## 1.5.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1), [`2effe04`](https://github.com/LedgerHQ/ledger-live/commit/2effe04d9d4b3e407ed25da3b9f11324a82126d3), [`32f2a0c`](https://github.com/LedgerHQ/ledger-live/commit/32f2a0cf073e5c1a5d65cbe44e69660f8f510dd7), [`2407a6e`](https://github.com/LedgerHQ/ledger-live/commit/2407a6e1f3153c30c52d4bac4c9334fa95c351da), [`40e98c3`](https://github.com/LedgerHQ/ledger-live/commit/40e98c392bd9192570e46c2d62cf0779bdfe01ec), [`a656e47`](https://github.com/LedgerHQ/ledger-live/commit/a656e47c1dc3ac8b578debf9cf80eab370c7086f)]:
|
|
8
|
+
- @ledgerhq/coin-framework@2.5.0-next.0
|
|
9
|
+
- @ledgerhq/types-live@6.65.0-next.0
|
|
10
|
+
- @ledgerhq/live-env@2.7.0-next.0
|
|
11
|
+
- @ledgerhq/cryptoassets@13.14.0-next.0
|
|
12
|
+
- @ledgerhq/live-network@2.0.6-next.0
|
|
13
|
+
|
|
3
14
|
## 1.5.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/jest.config.js
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
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/__tests__/**/*.ts",
|
|
10
|
+
],
|
|
11
|
+
coverageReporters: ["json", ["lcov", { file: "casper-lcov.info", projectRoot: "../" }], "text"],
|
|
5
12
|
preset: "ts-jest",
|
|
6
13
|
testEnvironment: "node",
|
|
7
|
-
testPathIgnorePatterns: ["lib/", "lib-es/"],
|
|
14
|
+
testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
|
|
15
|
+
reporters: [
|
|
16
|
+
[
|
|
17
|
+
"jest-sonar",
|
|
18
|
+
{ outputName: "casper-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
|
|
19
|
+
],
|
|
20
|
+
],
|
|
8
21
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-casper",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2-next.0",
|
|
4
4
|
"description": "Ledger Casper integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -91,14 +91,14 @@
|
|
|
91
91
|
"casper-js-sdk": "^2.15.4",
|
|
92
92
|
"blakejs": "^1.2.1",
|
|
93
93
|
"rxjs": "^7.8.1",
|
|
94
|
-
"@ledgerhq/
|
|
95
|
-
"@ledgerhq/
|
|
94
|
+
"@ledgerhq/coin-framework": "^2.5.0-next.0",
|
|
95
|
+
"@ledgerhq/cryptoassets": "^13.14.0-next.0",
|
|
96
96
|
"@ledgerhq/devices": "8.4.4",
|
|
97
97
|
"@ledgerhq/errors": "^6.19.1",
|
|
98
|
-
"@ledgerhq/live-env": "^2.
|
|
99
|
-
"@ledgerhq/live-network": "^2.0.
|
|
98
|
+
"@ledgerhq/live-env": "^2.7.0-next.0",
|
|
99
|
+
"@ledgerhq/live-network": "^2.0.6-next.0",
|
|
100
100
|
"@ledgerhq/logs": "^6.12.0",
|
|
101
|
-
"@ledgerhq/types-live": "^6.
|
|
101
|
+
"@ledgerhq/types-live": "^6.65.0-next.0"
|
|
102
102
|
},
|
|
103
103
|
"devDependencies": {
|
|
104
104
|
"@types/invariant": "^2.2.2",
|
|
@@ -107,14 +107,15 @@
|
|
|
107
107
|
"@types/semver": "^7.5.8",
|
|
108
108
|
"jest": "^29.7.0",
|
|
109
109
|
"ts-jest": "^29.1.1",
|
|
110
|
+
"jest-sonar": "0.2.16",
|
|
110
111
|
"expect": "^27.4.6",
|
|
111
112
|
"axios": "1.7.7",
|
|
112
|
-
"@ledgerhq/types-cryptoassets": "^7.
|
|
113
|
+
"@ledgerhq/types-cryptoassets": "^7.21.0-next.0"
|
|
113
114
|
},
|
|
114
115
|
"scripts": {
|
|
115
116
|
"clean": "rimraf lib lib-es",
|
|
116
117
|
"build": "tsc --outDir lib --module commonjs --moduleResolution node10 && tsc -m ES6 --outDir lib-es",
|
|
117
|
-
"coverage": "jest --coverage
|
|
118
|
+
"coverage": "jest --coverage",
|
|
118
119
|
"prewatch": "pnpm build",
|
|
119
120
|
"watch": "tsc --watch",
|
|
120
121
|
"watch:es": "tsc --watch -m ES6 --outDir lib-es",
|