@but212/atom-effect 0.8.3 → 0.8.4

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 +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -158,14 +158,14 @@ Type guards (`isAtom`, `isComputed`, `isEffect`), configuration constants (`DEBU
158
158
 
159
159
  | Operation | Performance |
160
160
  | --- | --- |
161
- | Atom creation | ~5.04M ops/sec |
162
- | Atom read/write | ~4.57M ops/sec |
161
+ | Atom creation | ~4.95M ops/sec |
162
+ | Atom read/write | ~9.32M ops/sec |
163
163
  | Computed creation | ~1.75M ops/sec |
164
- | Computed recomputation | ~467K ops/sec |
165
- | Effect execution | ~394K ops/sec |
166
- | Batch update (2 atoms) | ~1.77M ops/sec |
167
- | Untracked read | ~3.20M ops/sec |
168
- | Deep chain (100 levels) | ~8.2K ops/sec |
164
+ | Computed recomputation | ~556K ops/sec |
165
+ | Effect execution | ~4.57M ops/sec |
166
+ | Batch update (2 atoms) | ~3.97M ops/sec |
167
+ | Untracked read | ~6.01M ops/sec |
168
+ | Deep chain (100 levels) | ~8.7K ops/sec |
169
169
 
170
170
  See [docs/BENCHMARKS.md](./docs/BENCHMARKS.md) for details.
171
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@but212/atom-effect",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "type": "module",
5
5
  "description": "A reactive state management library that combines the power of `atom`, `computed`, and `effect` for seamless management of reactive state.",
6
6
  "main": "./dist/index.cjs",