@ledgerhq/hw-app-btc 10.6.0-next.0 → 10.7.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/hw-app-btc@10.5.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-btc
2
+ > @ledgerhq/hw-app-btc@10.6.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-btc
3
3
  > tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
4
4
 
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "entry": ["src/index.ts"],
3
+ "ignoreUnused": ["jest-sonar"],
3
4
  "ignoreUnimported": []
4
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @ledgerhq/hw-app-btc
2
2
 
3
+ ## 10.7.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
+ ## 10.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#9121](https://github.com/LedgerHQ/ledger-live/pull/9121) [`035be8c`](https://github.com/LedgerHQ/ledger-live/commit/035be8ccb81c61ee99688e0a4b078cb50d90dcf5) Thanks [@Wozacosta](https://github.com/Wozacosta)! - fix: zcash nu5/nu6
14
+
3
15
  ## 10.6.0-next.0
4
16
 
5
17
  ### Minor Changes
package/jest.config.ts CHANGED
@@ -3,4 +3,21 @@ import baseConfig from "../../jest.config";
3
3
  export default {
4
4
  ...baseConfig,
5
5
  rootDir: __dirname,
6
+ collectCoverageFrom: [
7
+ "src/**/*.ts",
8
+ "!src/**/*.test.{ts,tsx}",
9
+ "!src/**/*.spec.{ts,tsx}",
10
+ "!src/**/__tests__/**",
11
+ "!tests/**",
12
+ ],
13
+ coverageReporters: ["json", ["lcov", { projectRoot: "../" }], "json-summary", "text"],
14
+ reporters: [
15
+ [
16
+ "jest-sonar",
17
+ {
18
+ outputName: "hw-app-btc-sonar-executionTests-report.xml",
19
+ reportedFilePath: "absolute",
20
+ },
21
+ ],
22
+ ],
6
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-app-btc",
3
- "version": "10.6.0-next.0",
3
+ "version": "10.7.0-next.0",
4
4
  "description": "Ledger Hardware Wallet Bitcoin Application API",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -83,13 +83,14 @@
83
83
  "source-map-support": "^0.5.21",
84
84
  "ts-jest": "^29.1.1",
85
85
  "ts-node": "^10.4.0",
86
+ "jest-sonar": "0.2.16",
86
87
  "@ledgerhq/hw-transport-mocker": "^6.29.4",
87
88
  "@ledgerhq/hw-transport-node-speculos": "^6.29.4"
88
89
  },
89
90
  "gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
90
91
  "scripts": {
91
92
  "clean": "rimraf lib lib-es",
92
- "coverage": "jest --coverage --testPathIgnorePatterns='/.test.ts.disabled|node_modules|lib-es|lib/' --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-hw-app-btc.json",
93
+ "coverage": "jest --coverage --testPathIgnorePatterns='/.test.ts.disabled|node_modules|lib-es|lib/' --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-hw-app-btc.json && mv coverage/lcov.info coverage/hw-app-btc-lcov.info",
93
94
  "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
94
95
  "prewatch": "pnpm build",
95
96
  "watch": "tsc --watch",