@podium/client 5.2.5 → 5.2.7
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 +14 -0
- package/README.md +0 -2
- package/package.json +62 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.2.7](https://github.com/podium-lib/client/compare/v5.2.6...v5.2.7) (2025-02-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* list exports so types work for imports other than root ([#454](https://github.com/podium-lib/client/issues/454)) ([b186bec](https://github.com/podium-lib/client/commit/b186bece4fd0feb82f4e64c4acf5f27dd6b06659))
|
|
7
|
+
|
|
8
|
+
## [5.2.6](https://github.com/podium-lib/client/compare/v5.2.5...v5.2.6) (2025-01-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency undici to v6.21.1 ([#453](https://github.com/podium-lib/client/issues/453)) ([2cf54ca](https://github.com/podium-lib/client/commit/2cf54cac312cf6cbb91da0e0f636433f2de7d892))
|
|
14
|
+
|
|
1
15
|
## [5.2.5](https://github.com/podium-lib/client/compare/v5.2.4...v5.2.5) (2024-11-27)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Client for fetching podium component fragments over HTTP.
|
|
4
4
|
|
|
5
|
-
[](https://david-dm.org/podium-lib/client)
|
|
6
5
|
[](https://github.com/podium-lib/client/actions?query=workflow%3A%22Run+Lint+and+Tests%22)
|
|
7
|
-
[](https://snyk.io/test/github/podium-lib/client?targetFile=package.json)
|
|
8
6
|
|
|
9
7
|
This module is intended for internal use in Podium and is not a module an end
|
|
10
8
|
user would use directly. End users will typically interact with this module
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/client",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -28,6 +28,60 @@
|
|
|
28
28
|
],
|
|
29
29
|
"main": "./lib/client.js",
|
|
30
30
|
"types": "./types/client.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./types/client.js",
|
|
34
|
+
"default": "./lib/client.js"
|
|
35
|
+
},
|
|
36
|
+
"./lib/client.js": {
|
|
37
|
+
"types": "./types/client.js",
|
|
38
|
+
"default": "./lib/client.js"
|
|
39
|
+
},
|
|
40
|
+
"./lib/http-outgoing.js": {
|
|
41
|
+
"types": "./types/http-outgoing.js",
|
|
42
|
+
"default": "./lib/http-outgoing.js"
|
|
43
|
+
},
|
|
44
|
+
"./lib/http.js": {
|
|
45
|
+
"types": "./types/http.js",
|
|
46
|
+
"default": "./lib/http.js"
|
|
47
|
+
},
|
|
48
|
+
"./lib/resolver.cache.js": {
|
|
49
|
+
"types": "./types/resolver.cache.js",
|
|
50
|
+
"default": "./lib/resolver.cache.js"
|
|
51
|
+
},
|
|
52
|
+
"./lib/resolver.content.js": {
|
|
53
|
+
"types": "./types/resolver.content.js",
|
|
54
|
+
"default": "./lib/resolver.content.js"
|
|
55
|
+
},
|
|
56
|
+
"./lib/resolver.fallback.js": {
|
|
57
|
+
"types": "./types/resolver.fallback.js",
|
|
58
|
+
"default": "./lib/resolver.fallback.js"
|
|
59
|
+
},
|
|
60
|
+
"./lib/resolver.js": {
|
|
61
|
+
"types": "./types/resolver.js",
|
|
62
|
+
"default": "./lib/resolver.js"
|
|
63
|
+
},
|
|
64
|
+
"./lib/resolver.manifest.js": {
|
|
65
|
+
"types": "./types/resolver.manifest.js",
|
|
66
|
+
"default": "./lib/resolver.manifest.js"
|
|
67
|
+
},
|
|
68
|
+
"./lib/resource.js": {
|
|
69
|
+
"types": "./types/resource.js",
|
|
70
|
+
"default": "./lib/resource.js"
|
|
71
|
+
},
|
|
72
|
+
"./lib/response.js": {
|
|
73
|
+
"types": "./types/response.js",
|
|
74
|
+
"default": "./lib/response.js"
|
|
75
|
+
},
|
|
76
|
+
"./lib/state.js": {
|
|
77
|
+
"types": "./types/state.js",
|
|
78
|
+
"default": "./lib/state.js"
|
|
79
|
+
},
|
|
80
|
+
"./lib/utils.js": {
|
|
81
|
+
"types": "./types/utils.js",
|
|
82
|
+
"default": "./lib/utils.js"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
31
85
|
"scripts": {
|
|
32
86
|
"lint": "eslint .",
|
|
33
87
|
"lint:fix": "eslint --fix .",
|
|
@@ -45,10 +99,10 @@
|
|
|
45
99
|
"http-cache-semantics": "^4.0.3",
|
|
46
100
|
"lodash.clonedeep": "^4.5.0",
|
|
47
101
|
"ttl-mem-cache": "4.1.0",
|
|
48
|
-
"undici": "6.21.
|
|
102
|
+
"undici": "6.21.1"
|
|
49
103
|
},
|
|
50
104
|
"devDependencies": {
|
|
51
|
-
"@podium/eslint-config": "1.0.
|
|
105
|
+
"@podium/eslint-config": "1.0.5",
|
|
52
106
|
"@podium/semantic-release-config": "2.0.0",
|
|
53
107
|
"@podium/test-utils": "3.1.0-next.5",
|
|
54
108
|
"@podium/typescript-config": "1.0.0",
|
|
@@ -60,15 +114,15 @@
|
|
|
60
114
|
"@sinonjs/fake-timers": "11.3.1",
|
|
61
115
|
"@types/readable-stream": "4.0.18",
|
|
62
116
|
"benchmark": "2.1.4",
|
|
63
|
-
"eslint": "9.
|
|
117
|
+
"eslint": "9.17.0",
|
|
64
118
|
"eslint-config-prettier": "9.1.0",
|
|
65
|
-
"eslint-plugin-prettier": "5.1
|
|
66
|
-
"express": "4.21.
|
|
119
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
120
|
+
"express": "4.21.2",
|
|
67
121
|
"get-stream": "9.0.1",
|
|
68
122
|
"http-proxy": "1.18.1",
|
|
69
123
|
"is-stream": "4.0.1",
|
|
70
|
-
"npm-run-all2": "6.2.
|
|
71
|
-
"prettier": "3.
|
|
124
|
+
"npm-run-all2": "6.2.6",
|
|
125
|
+
"prettier": "3.4.2",
|
|
72
126
|
"semantic-release": "24.1.2",
|
|
73
127
|
"tap": "18.7.2",
|
|
74
128
|
"typescript": "5.6.3",
|