@ledgerhq/coin-mina 1.1.0 → 1.1.1-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,13 @@
1
1
  # @ledgerhq/coin-mina
2
2
 
3
+ ## 1.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`9a208c3`](https://github.com/LedgerHQ/ledger-live/commit/9a208c39aec129b3aff2105991ffc18be05fd3f5), [`9009235`](https://github.com/LedgerHQ/ledger-live/commit/9009235cf52e83c0626acaec0959bfb3837404aa), [`95dbd60`](https://github.com/LedgerHQ/ledger-live/commit/95dbd60c06b02fe6fd50bc2ec0883096858d1f23)]:
8
+ - @ledgerhq/types-live@6.68.0-next.0
9
+ - @ledgerhq/coin-framework@3.0.1-next.0
10
+
3
11
  ## 1.1.0
4
12
 
5
13
  ### Minor Changes
package/jest.config.js CHANGED
@@ -5,4 +5,5 @@ module.exports = {
5
5
  testEnvironment: "node",
6
6
  testPathIgnorePatterns: ["lib/", "lib-es/", ".*\\.integ\\.test\\.[tj]s"],
7
7
  workerThreads: true,
8
+ setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"],
8
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/coin-mina",
3
- "version": "1.1.0",
3
+ "version": "1.1.1-next.0",
4
4
  "description": "Mina Coin integration",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -108,14 +108,14 @@
108
108
  "invariant": "^2.2.2",
109
109
  "lodash": "^4.17.21",
110
110
  "rxjs": "^7.8.1",
111
- "@ledgerhq/coin-framework": "^3.0.0",
111
+ "@ledgerhq/coin-framework": "^3.0.1-next.0",
112
112
  "@ledgerhq/cryptoassets": "^13.15.0",
113
113
  "@ledgerhq/devices": "^8.4.4",
114
114
  "@ledgerhq/errors": "^6.19.1",
115
115
  "@ledgerhq/live-network": "^2.0.7",
116
116
  "@ledgerhq/logs": "^6.12.0",
117
117
  "@ledgerhq/types-cryptoassets": "^7.22.0",
118
- "@ledgerhq/types-live": "^6.67.0"
118
+ "@ledgerhq/types-live": "^6.68.0-next.0"
119
119
  },
120
120
  "devDependencies": {
121
121
  "@types/invariant": "^2.2.2",
@@ -124,12 +124,13 @@
124
124
  "@types/jest": "^29.5.10",
125
125
  "@types/lodash": "^4.14.191",
126
126
  "jest": "^29.7.0",
127
- "ts-jest": "^29.1.1"
127
+ "ts-jest": "^29.1.1",
128
+ "@ledgerhq/disable-network-setup": "^0.0.0"
128
129
  },
129
130
  "scripts": {
130
131
  "clean": "rimraf lib lib-es",
131
132
  "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
132
- "coverage": "jest --coverage --testPathIgnorePatterns='/bridge.integration.test.ts|node_modules|lib-es|lib/' --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-boilerplate.json",
133
+ "coverage": "jest --coverage --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-boilerplate.json",
133
134
  "prewatch": "pnpm build",
134
135
  "watch": "tsc --watch",
135
136
  "doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",