@octanejs/redux 0.1.45 → 0.1.47
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 +7 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
[React Redux](https://react-redux.js.org) for the [octane](https://github.com/octanejs/octane) UI framework.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install @octanejs/redux redux
|
|
9
|
+
pnpm add @octanejs/redux redux
|
|
10
|
+
```
|
|
11
|
+
|
|
5
12
|
The react-redux 9.3.0 hooks + `Provider` surface (`useSelector`, `useDispatch`,
|
|
6
13
|
`useStore`, and the custom-context factory variants) reimplemented on octane's
|
|
7
14
|
`useSyncExternalStore` — works with any Redux 5 / Redux Toolkit store by
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/redux",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
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.50"
|
|
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.50"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"test": "vitest run"
|