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.
@@ -68,6 +68,7 @@ jobs:
68
68
  if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
69
69
  run: |
70
70
  yarn standard-version
71
+ git push origin main --follow-tags
71
72
  npm publish --tag beta
72
73
  env:
73
74
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Binary file
package/CHANGELOG.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- ### 0.0.2-beta.0 (2024-04-04)
5
+ ### 0.0.2-beta.2 (2024-04-04)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  **Dantian - React State Management Reimagined**
2
2
 
3
- npm version: [replace with package version badge]
3
+ [![npm version](https://badge.fury.io/js/dantian.svg)](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.0",
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
- "react": ">=18"
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
  }