@inglorious/react-store 1.0.2 → 3.0.0

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 CHANGED
@@ -434,9 +434,11 @@ A: Use Inglorious Store middleware instead. See [@inglorious/store docs](https:/
434
434
 
435
435
  ## License
436
436
 
437
- MIT © [Matteo Antony Mistretta](https://github.com/IngloriousCoderz)
437
+ **MIT License - Free and open source**
438
438
 
439
- This is free and open-source software. Use it however you want!
439
+ Created by [Matteo Antony Mistretta](https://github.com/IngloriousCoderz)
440
+
441
+ You're free to use, modify, and distribute this software. See [LICENSE](./LICENSE) for details.
440
442
 
441
443
  ---
442
444
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inglorious/react-store",
3
- "version": "1.0.2",
3
+ "version": "3.0.0",
4
4
  "description": "Official React bindings for @inglorious/store. Provides hooks and a Provider to connect your React components to the store.",
5
5
  "author": "IceOnFire <antony.mistretta@gmail.com> (https://ingloriouscoderz.it)",
6
6
  "license": "MIT",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "peerDependencies": {
42
42
  "react": "^19.2.0",
43
- "@inglorious/store": "5.2.0"
43
+ "@inglorious/store": "5.4.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "prettier": "^3.6.2",
package/src/index.jsx CHANGED
@@ -22,7 +22,6 @@ export function createReactStore(store, config = DEFAULT_CONFIG) {
22
22
  store.notify(type, payload)
23
23
 
24
24
  if (config.mode === "eager") {
25
- store.update()
26
25
  sendAction({ type, payload }, store.getState())
27
26
  }
28
27
  }, [])