@ledgerhq/coin-icon 0.8.1 → 0.9.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @ledgerhq/coin-algorand
2
2
 
3
+ ## 0.9.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), [`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)]:
12
+ - @ledgerhq/coin-framework@2.5.0-next.0
13
+ - @ledgerhq/types-live@6.65.0-next.0
14
+ - @ledgerhq/live-env@2.7.0-next.0
15
+ - @ledgerhq/types-cryptoassets@7.21.0-next.0
16
+ - @ledgerhq/cryptoassets@13.14.0-next.0
17
+ - @ledgerhq/live-network@2.0.6-next.0
18
+
3
19
  ## 0.8.1
4
20
 
5
21
  ### Patch Changes
package/jest.config.js CHANGED
@@ -2,10 +2,22 @@
2
2
  module.exports = {
3
3
  preset: "ts-jest",
4
4
  testEnvironment: "node",
5
- testPathIgnorePatterns: ["lib/", "lib-es/"],
5
+ passWithNoTests: true,
6
+ testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
6
7
  modulePathIgnorePatterns: [
7
8
  "/bridge.integration.test.ts", // this file is tested at the live-common level
8
9
  ],
9
- collectCoverage: true,
10
- coverageReporters: ["json", "html"],
10
+ collectCoverageFrom: [
11
+ "src/**/*.ts",
12
+ "!src/**/*.test.ts",
13
+ "!src/**/*.spec.ts",
14
+ "!src/test/**/*.ts",
15
+ ],
16
+ coverageReporters: ["json", ["lcov", { file: "icon-lcov.info", projectRoot: "../" }], "text"],
17
+ reporters: [
18
+ [
19
+ "jest-sonar",
20
+ { outputName: "icon-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
21
+ ],
22
+ ],
11
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/coin-icon",
3
- "version": "0.8.1",
3
+ "version": "0.9.0-next.0",
4
4
  "description": "Ledger Icon Coin integration",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -52,26 +52,27 @@
52
52
  "lodash": "^4.17.21",
53
53
  "prando": "^6.0.1",
54
54
  "rxjs": "^7.8.1",
55
- "@ledgerhq/coin-framework": "^2.4.0",
56
- "@ledgerhq/cryptoassets": "^13.13.0",
55
+ "@ledgerhq/coin-framework": "^2.5.0-next.0",
56
+ "@ledgerhq/cryptoassets": "^13.14.0-next.0",
57
57
  "@ledgerhq/devices": "8.4.4",
58
58
  "@ledgerhq/errors": "^6.19.1",
59
- "@ledgerhq/live-env": "^2.6.0",
60
- "@ledgerhq/live-network": "^2.0.5",
59
+ "@ledgerhq/live-env": "^2.7.0-next.0",
60
+ "@ledgerhq/live-network": "^2.0.6-next.0",
61
61
  "@ledgerhq/live-promise": "^0.1.0",
62
62
  "@ledgerhq/logs": "^6.12.0",
63
- "@ledgerhq/types-cryptoassets": "^7.20.0",
64
- "@ledgerhq/types-live": "^6.64.0"
63
+ "@ledgerhq/types-cryptoassets": "^7.21.0-next.0",
64
+ "@ledgerhq/types-live": "^6.65.0-next.0"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@types/invariant": "^2.2.2",
68
68
  "@types/jest": "^29.5.10",
69
69
  "@types/lodash": "^4.14.191",
70
70
  "jest": "^29.7.0",
71
+ "jest-sonar": "0.2.16",
71
72
  "ts-jest": "^29.1.1"
72
73
  },
73
74
  "scripts": {
74
- "coverage": "jest --coverage --testPathIgnorePatterns='/bridge.integration.test.ts|node_modules|lib-es|lib/' --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-icon.json",
75
+ "coverage": "jest --coverage",
75
76
  "clean": "rimraf lib lib-es",
76
77
  "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
77
78
  "prewatch": "pnpm build",