@ledgerhq/live-network 2.4.0 → 2.4.1-nightly.20260317030141

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
2
  > @ledgerhq/live-network@2.4.0 build /home/runner/work/ledger-live/ledger-live/libs/live-network
3
- > tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
3
+ > tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @ledgerhq/live-network
2
2
 
3
+ ## 2.4.1-nightly.20260317030141
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`c8d7be6`](https://github.com/LedgerHQ/ledger-live/commit/c8d7be6964aa9d8defd77de0b77ba7d42f472025), [`fd24208`](https://github.com/LedgerHQ/ledger-live/commit/fd242082615ef0af25f0f5f96389b7406fc194dc), [`8cb2da1`](https://github.com/LedgerHQ/ledger-live/commit/8cb2da1f175f143666abcb66ef94bd230456846d)]:
8
+ - @ledgerhq/errors@6.31.0-nightly.20260317030141
9
+ - @ledgerhq/logs@6.16.0-nightly.20260317030141
10
+ - @ledgerhq/live-env@2.30.0-nightly.20260317030141
11
+ - @ledgerhq/live-promise@0.2.2-nightly.20260317030141
12
+
3
13
  ## 2.4.0
4
14
 
5
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/live-network",
3
- "version": "2.4.0",
3
+ "version": "2.4.1-nightly.20260317030141",
4
4
  "description": "Ledger Live network and cache utilities",
5
5
  "keywords": [
6
6
  "Ledger"
@@ -39,22 +39,27 @@
39
39
  "./lib-es/*": "./lib-es/*.js",
40
40
  "./lib-es/*.js": "./lib-es/*.js",
41
41
  "./batcher": {
42
+ "@ledgerhq/source": "./src/batcher/index.ts",
42
43
  "require": "./lib/batcher/index.js",
43
44
  "default": "./lib-es/batcher/index.js"
44
45
  },
45
46
  "./batcher/*": {
47
+ "@ledgerhq/source": "./src/batcher/*.ts",
46
48
  "require": "./lib/batcher/*.js",
47
49
  "default": "./lib-es/batcher/*.js"
48
50
  },
49
51
  "./*": {
52
+ "@ledgerhq/source": "./src/*.ts",
50
53
  "require": "./lib/*.js",
51
54
  "default": "./lib-es/*.js"
52
55
  },
53
56
  "./*.js": {
57
+ "@ledgerhq/source": "./src/*.ts",
54
58
  "require": "./lib/*.js",
55
59
  "default": "./lib-es/*.js"
56
60
  },
57
61
  ".": {
62
+ "@ledgerhq/source": "./src/index.ts",
58
63
  "require": "./lib/index.js",
59
64
  "default": "./lib-es/index.js"
60
65
  },
@@ -64,25 +69,25 @@
64
69
  "dependencies": {
65
70
  "axios": "1.13.2",
66
71
  "lru-cache": "^7.14.1",
67
- "@ledgerhq/live-env": "^2.29.0",
68
- "@ledgerhq/live-promise": "^0.2.1",
69
- "@ledgerhq/logs": "^6.15.0",
70
- "@ledgerhq/errors": "^6.30.0"
72
+ "@ledgerhq/errors": "^6.31.0-nightly.20260317030141",
73
+ "@ledgerhq/live-env": "^2.30.0-nightly.20260317030141",
74
+ "@ledgerhq/live-promise": "^0.2.2-nightly.20260317030141",
75
+ "@ledgerhq/logs": "^6.16.0-nightly.20260317030141"
71
76
  },
72
77
  "devDependencies": {
73
78
  "@types/invariant": "^2.2.35",
74
79
  "@types/jest": "30.0.0",
75
- "@types/node": "22.19.13",
80
+ "@types/node": "24.12.0",
76
81
  "jest": "30.2.0",
77
82
  "@swc/jest": "0.2.39",
78
83
  "@swc/core": "1.15.11"
79
84
  },
80
85
  "scripts": {
81
86
  "clean": "rimraf lib lib-es",
82
- "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
87
+ "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
83
88
  "prewatch": "pnpm build",
84
- "watch": "tsc --watch",
85
- "watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es",
89
+ "watch": "tsc --watch --project tsconfig.build.json",
90
+ "watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
86
91
  "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
87
92
  "lint:fix": "pnpm lint --fix",
88
93
  "test": "jest",
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "customConditions": []
5
+ },
6
+ "exclude": [
7
+ "**/*.test.ts",
8
+ "**/*.test.tsx",
9
+ "**/*.spec.ts",
10
+ "**/*.spec.tsx",
11
+ "**/__tests__/**/*",
12
+ "**/tests/**/*",
13
+ "**/*.test.js",
14
+ "**/*.test.jsx",
15
+ "**/*.spec.js",
16
+ "**/*.spec.jsx"
17
+ ]
18
+ }