@octanejs/redux 0.1.30 → 0.1.32
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/README.md +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
The react-redux 9.3.0 hooks + `Provider` surface (`useSelector`, `useDispatch`,
|
|
6
6
|
`useStore`, and the custom-context factory variants) reimplemented on octane's
|
|
7
7
|
`useSyncExternalStore` — works with any Redux 5 / Redux Toolkit store by
|
|
8
|
-
changing the import.
|
|
8
|
+
changing the import. Upstream runtime-export completeness is pinned by test;
|
|
9
|
+
the package also exposes the Octane extension helpers documented in
|
|
10
|
+
[`UPSTREAM.md`](./UPSTREAM.md).
|
|
9
11
|
|
|
10
12
|
```tsx
|
|
11
13
|
import { Provider, useSelector, useDispatch } from '@octanejs/redux';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/redux",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"redux": "^5.0.0",
|
|
34
|
-
"octane": "0.1.
|
|
34
|
+
"octane": "0.1.35"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@reduxjs/toolkit": "^2.12.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"react-redux": "9.3.0",
|
|
43
43
|
"redux": "^5.0.1",
|
|
44
44
|
"vitest": "^4.1.10",
|
|
45
|
-
"octane": "0.1.
|
|
45
|
+
"octane": "0.1.35"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"test": "vitest run"
|