@ledgerhq/coin-aptos 1.7.2 → 1.8.0-nightly.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 +21 -2
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @ledgerhq/coin-aptos
|
|
2
2
|
|
|
3
|
+
## 1.8.0-nightly.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)]:
|
|
12
|
+
- @ledgerhq/coin-framework@2.5.0-nightly.0
|
|
13
|
+
|
|
3
14
|
## 1.7.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/jest.config.js
CHANGED
|
@@ -1,8 +1,27 @@
|
|
|
1
1
|
/** @type {import('ts-jest/dist/types').JestConfigWithTsJest} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
collectCoverageFrom: ["src/**/*.ts"],
|
|
4
|
-
coverageDirectory: "coverage",
|
|
5
3
|
preset: "ts-jest",
|
|
4
|
+
passWithNoTests: true,
|
|
5
|
+
collectCoverageFrom: [
|
|
6
|
+
"src/**/*.ts",
|
|
7
|
+
"!src/**/*.test.ts",
|
|
8
|
+
"!src/**/*.spec.ts",
|
|
9
|
+
"!src/test/**/*.ts",
|
|
10
|
+
"!src/__tests__/**/*.ts",
|
|
11
|
+
],
|
|
12
|
+
coverageReporters: ["json", ["lcov", { file: "aptos-lcov.info", projectRoot: "../" }], "text"],
|
|
6
13
|
testEnvironment: "node",
|
|
7
14
|
testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
|
|
15
|
+
reporters: [
|
|
16
|
+
[
|
|
17
|
+
"jest-sonar",
|
|
18
|
+
{ outputName: "aptos-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
|
|
19
|
+
],
|
|
20
|
+
],
|
|
21
|
+
coveragePathIgnorePatterns: [
|
|
22
|
+
"src/test",
|
|
23
|
+
"src/types",
|
|
24
|
+
"src/index.ts",
|
|
25
|
+
"src/bridge/bridge.fixture.ts",
|
|
26
|
+
],
|
|
8
27
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-aptos",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0-nightly.0",
|
|
4
4
|
"description": "Ledger Aptos Coin integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -90,12 +90,12 @@
|
|
|
90
90
|
"expect": "^27.4.6",
|
|
91
91
|
"lodash": "^4.17.21",
|
|
92
92
|
"rxjs": "^7.8.1",
|
|
93
|
-
"@ledgerhq/coin-framework": "^2.
|
|
94
|
-
"@ledgerhq/cryptoassets": "^13.
|
|
93
|
+
"@ledgerhq/coin-framework": "^2.5.0-nightly.0",
|
|
94
|
+
"@ledgerhq/cryptoassets": "^13.14.0-nightly.1",
|
|
95
95
|
"@ledgerhq/devices": "8.4.4",
|
|
96
96
|
"@ledgerhq/errors": "^6.19.1",
|
|
97
|
-
"@ledgerhq/live-env": "^2.
|
|
98
|
-
"@ledgerhq/live-network": "^2.0.
|
|
97
|
+
"@ledgerhq/live-env": "^2.7.0-nightly.0",
|
|
98
|
+
"@ledgerhq/live-network": "^2.0.6-nightly.0",
|
|
99
99
|
"@ledgerhq/logs": "^6.12.0",
|
|
100
100
|
"@ledgerhq/types-live": "^6.64.0"
|
|
101
101
|
},
|
|
@@ -108,12 +108,13 @@
|
|
|
108
108
|
"jest": "^29.7.0",
|
|
109
109
|
"ts-jest": "^29.2.5",
|
|
110
110
|
"axios": "^1.7.9",
|
|
111
|
-
"react": "^18.3.1"
|
|
111
|
+
"react": "^18.3.1",
|
|
112
|
+
"jest-sonar": "0.2.16"
|
|
112
113
|
},
|
|
113
114
|
"scripts": {
|
|
114
115
|
"clean": "rimraf lib lib-es",
|
|
115
116
|
"build": "tsc --outDir lib --module commonjs --moduleResolution node10 && tsc -m ES6 --outDir lib-es",
|
|
116
|
-
"coverage": "jest --coverage
|
|
117
|
+
"coverage": "jest --coverage",
|
|
117
118
|
"prewatch": "pnpm build",
|
|
118
119
|
"watch": "tsc --watch",
|
|
119
120
|
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
|