react-global-state-hooks 1.0.21 → 1.0.23

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -4,6 +4,8 @@ This is a package to easily handling global-state across your react components
4
4
 
5
5
  This utility uses the **useState** hook within a subscription pattern and **HOFs** to create a more intuitive, atomic and easy way of sharing state between components... You can see an introduction video [here!](https://www.youtube.com/watch?v=WfoMhO1zZ04)
6
6
 
7
+ For seen a running example of the hooks, you can check the following link: [react-global-state-hooks-example](https://johnny-quesada-developer.github.io/react-global-state-hooks-example/)
8
+
7
9
  ...
8
10
 
9
11
  ...
@@ -689,6 +691,4 @@ The setMetadata is part of the store tools, so it can be used in the actions, bu
689
691
 
690
692
  ...
691
693
 
692
- For seen a running example of the hooks, you can check the following link: [react-global-state-hooks-example](https://johnny-quesada-developer.github.io/react-global-state-hooks-example/)
693
-
694
694
  # That's it for now!! hope you enjoy coding!!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-global-state-hooks",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "This is a package to easily handling global-state across your react components No-redux, No-context.",
5
5
  "main": "lib/GlobalStore.js",
6
6
  "files": [
@@ -49,17 +49,18 @@
49
49
  "eslint-plugin-react": "^7.21.5",
50
50
  "eslint-plugin-react-hooks": "^4.2.0",
51
51
  "jest": "^26.6.3",
52
- "react": "17.0.2",
53
- "react-dom": "17.0.2",
52
+ "json-storage-formatter": "^1.0.6",
53
+ "react": "^17.0.0",
54
+ "react-dom": "^17.0.0",
55
+ "react-native-global-state-hooks": "^2.1.16",
54
56
  "react-test-renderer": "^17.0.1",
55
57
  "ts-jest": "^26.4.4",
56
58
  "typescript": "^4.1.2"
57
59
  },
58
60
  "peerDependencies": {
59
- "react": "workspace:*",
60
- "react-dom": "workspace:*"
61
- },
62
- "dependencies": {
63
- "react-native-global-state-hooks": "^2.1.10"
61
+ "json-storage-formatter": "^1.0.6",
62
+ "react": "^17.0.0",
63
+ "react-dom": "^17.0.0",
64
+ "react-native-global-state-hooks": "^2.1.16"
64
65
  }
65
66
  }