dantian 0.0.2-beta.0 → 0.0.2-beta.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/.github/workflows/ci.yml +1 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/package.json +7 -7
package/.github/workflows/ci.yml
CHANGED
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
**Dantian - React State Management Reimagined**
|
|
2
2
|
|
|
3
|
-
npm version
|
|
3
|
+
[](https://badge.fury.io/js/dantian)
|
|
4
4
|
|
|
5
5
|
Dantian is an event-based state management library for React applications that delivers pinpoint performance and effortless integration with forms. Say goodbye to unnecessary rerenders and complex state comparisons – Dantian ensures that components only update when they subscribe to specific state changes.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dantian",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/dantian.cjs",
|
|
6
6
|
"module": "./dist/dantian.js",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"**/*": "prettier --write --ignore-unknown"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"
|
|
27
|
+
"lodash": ">=4",
|
|
28
|
+
"react": ">=18",
|
|
29
|
+
"rxjs": ">=7.8"
|
|
28
30
|
},
|
|
29
31
|
"devDependencies": {
|
|
30
32
|
"@commitlint/cli": "^18.6.1",
|
|
@@ -55,9 +57,11 @@
|
|
|
55
57
|
"husky": "^9.0.11",
|
|
56
58
|
"jsdom": "^24.0.0",
|
|
57
59
|
"lint-staged": "^15.2.2",
|
|
60
|
+
"lodash": "^4.17.21",
|
|
58
61
|
"prettier": "^3.2.5",
|
|
59
62
|
"react": "18.2.0",
|
|
60
63
|
"react-dom": "^18.2.0",
|
|
64
|
+
"rxjs": "^7.8.1",
|
|
61
65
|
"standard-version": "^9.5.0",
|
|
62
66
|
"storybook": "^7.6.17",
|
|
63
67
|
"typescript": "*",
|
|
@@ -65,9 +69,5 @@
|
|
|
65
69
|
"vite-plugin-dts": "^3.7.3",
|
|
66
70
|
"vitest": "^1.3.1"
|
|
67
71
|
},
|
|
68
|
-
"packageManager": "yarn@4.1.0"
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"lodash.set": "^4.3.2",
|
|
71
|
-
"rxjs": "^7.8.1"
|
|
72
|
-
}
|
|
72
|
+
"packageManager": "yarn@4.1.0"
|
|
73
73
|
}
|