react-hooks-global-states 16.0.3 → 16.0.4-beta
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/debug.cjs +1 -0
- package/debug.d.ts +2 -0
- package/debug.js +1 -0
- package/debug.mjs +1 -0
- package/package.json +8 -2
package/debug.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var e=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var b=(p,o,i,t)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of x(o))!a.call(p,r)&&r!==i&&e(p,r,{get:()=>o[r],enumerable:!(t=m(o,r))||t.enumerable});return p};var c=p=>b(e({},"__esModule",{value:!0}),p);var d={};module.exports=c(d);var g=require("react-hooks-global-states-debug");
|
package/debug.d.ts
ADDED
package/debug.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var e=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var b=(p,o,i,t)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of x(o))!a.call(p,r)&&r!==i&&e(p,r,{get:()=>o[r],enumerable:!(t=m(o,r))||t.enumerable});return p};var c=p=>b(e({},"__esModule",{value:!0}),p);var d={};module.exports=c(d);var g=require("react-hooks-global-states-debug");
|
package/debug.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"react-hooks-global-states-debug";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-hooks-global-states",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.4-beta",
|
|
4
4
|
"description": "A package to easily handle global state across your React components using hooks.",
|
|
5
5
|
"main": "./bundle.cjs",
|
|
6
6
|
"module": "./bundle.mjs",
|
|
@@ -57,6 +57,11 @@
|
|
|
57
57
|
"import": "./actions.mjs",
|
|
58
58
|
"require": "./actions.cjs"
|
|
59
59
|
},
|
|
60
|
+
"./debug": {
|
|
61
|
+
"types": "./debug.d.ts",
|
|
62
|
+
"import": "./debug.mjs",
|
|
63
|
+
"require": "./debug.cjs"
|
|
64
|
+
},
|
|
60
65
|
"./package.json": "./package.json"
|
|
61
66
|
},
|
|
62
67
|
"files": [
|
|
@@ -88,7 +93,8 @@
|
|
|
88
93
|
},
|
|
89
94
|
"homepage": "https://github.com/johnny-quesada-developer/react-hooks-global-states#readme",
|
|
90
95
|
"dependencies": {
|
|
91
|
-
"json-storage-formatter": "^4.0.0"
|
|
96
|
+
"json-storage-formatter": "^4.0.0",
|
|
97
|
+
"react-hooks-global-states-debug": "^16.0.4-beta"
|
|
92
98
|
},
|
|
93
99
|
"peerDependencies": {
|
|
94
100
|
"react": ">=18.0.0",
|