@webkrafters/react-observable-context 6.0.1-alpha.0 → 6.0.2
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 +2 -2
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
If sandbox fails to load app, please refresh dependencies on its lower left.
|
|
48
48
|
|
|
49
49
|
**Install:**\
|
|
50
|
-
npm i -S react-
|
|
51
|
-
|
|
50
|
+
npm i -S @webkrafters/react-observable-context\
|
|
51
|
+
Defunct: npm i -S react-eagleeye
|
|
52
52
|
|
|
53
53
|
May also see <b><a href="https://eagleeye.js.org/history/features">What's Changed?</a></b>
|
|
54
54
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"alias": "eagle eye context",
|
|
2
|
+
"alias": "react eagle eye context",
|
|
3
3
|
"author": "Stephen Isienyi <stephen.isienyi@webkrafting.com>",
|
|
4
4
|
"bugs": {
|
|
5
|
-
"url": "https://github.com/webKrafters/
|
|
5
|
+
"url": "https://github.com/webKrafters/react-observable-context/issues"
|
|
6
6
|
},
|
|
7
7
|
"contributors": [
|
|
8
8
|
"steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
|
|
9
9
|
],
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@webkrafters/auto-immutable": "^2.0.2"
|
|
12
|
+
},
|
|
10
13
|
"description": "Observable react context - Update-friendly context. Prevents automatic total component tree tear-down and re-rendering during context updates.",
|
|
11
14
|
"devDependencies": {
|
|
12
15
|
"@babel/cli": "^7.17.0",
|
|
@@ -28,6 +31,7 @@
|
|
|
28
31
|
"@webkrafters/data-distillery": "^0.1.1",
|
|
29
32
|
"@webkrafters/get-property": "^2.0.0",
|
|
30
33
|
"@webkrafters/path-dotize": "0.0.2",
|
|
34
|
+
"@webkrafters/timed-map": "^2.0.0",
|
|
31
35
|
"babel-loader": "^9.1.3",
|
|
32
36
|
"eslint": "^8.57.0",
|
|
33
37
|
"eslint-config-standard": "^17.1.0",
|
|
@@ -40,10 +44,13 @@
|
|
|
40
44
|
"jest": "^29.7.0",
|
|
41
45
|
"jest-cli": "^29.7.0",
|
|
42
46
|
"jest-environment-jsdom": "^29.7.0",
|
|
47
|
+
"lodash.clonedeep": "^4.5.0",
|
|
43
48
|
"lodash.clonedeepwith": "^4.5.0",
|
|
44
49
|
"lodash.isboolean": "^3.0.3",
|
|
45
50
|
"lodash.isempty": "^4.4.0",
|
|
46
51
|
"lodash.isequal": "^4.5.0",
|
|
52
|
+
"lodash.isinteger": "^4.0.4",
|
|
53
|
+
"lodash.isobject": "^3.0.2",
|
|
47
54
|
"lodash.isplainobject": "^4.0.6",
|
|
48
55
|
"lodash.omit": "^4.5.0",
|
|
49
56
|
"lodash.set": "^4.3.2",
|
|
@@ -99,7 +106,7 @@
|
|
|
99
106
|
},
|
|
100
107
|
"repository": {
|
|
101
108
|
"type": "git",
|
|
102
|
-
"url": "git+https://github.com/webKrafters/
|
|
109
|
+
"url": "git+https://github.com/webKrafters/react-observable-context.git"
|
|
103
110
|
},
|
|
104
111
|
"scripts": {
|
|
105
112
|
"build": "eslint --fix && rm -rf dist && tsc && babel dist -d dist",
|
|
@@ -109,8 +116,5 @@
|
|
|
109
116
|
"test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
|
|
110
117
|
},
|
|
111
118
|
"types": "dist/index.d.ts",
|
|
112
|
-
"version": "6.0.
|
|
113
|
-
"dependencies": {
|
|
114
|
-
"@webkrafters/auto-immutable": "^2.0.0-alpha.0"
|
|
115
|
-
}
|
|
119
|
+
"version": "6.0.2"
|
|
116
120
|
}
|