react-ws-context 0.1.0 → 0.1.1
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 +6 -0
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2026-08-28
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Remove `exports.development` so npm consumers no longer resolve missing `src/` in dev mode
|
|
15
|
+
|
|
10
16
|
## [0.1.0] - 2026-08-28
|
|
11
17
|
|
|
12
18
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-ws-context",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "React WebSocket connection layer — separate hooks for actions, connection state, and message events to avoid unnecessary re-renders",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -28,13 +28,11 @@
|
|
|
28
28
|
"types": "./dist/index.d.mts",
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
31
|
-
"development": "./src/index.ts",
|
|
32
31
|
"types": "./dist/index.d.mts",
|
|
33
32
|
"import": "./dist/index.mjs",
|
|
34
33
|
"default": "./dist/index.mjs"
|
|
35
34
|
},
|
|
36
35
|
"./stall": {
|
|
37
|
-
"development": "./src/stall/index.ts",
|
|
38
36
|
"types": "./dist/stall/index.d.mts",
|
|
39
37
|
"import": "./dist/stall/index.mjs",
|
|
40
38
|
"default": "./dist/stall/index.mjs"
|