Comparing version 0.0.6 to 0.0.7
@@ -8,9 +8,10 @@ { | ||
}, | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"main": "dist/index.js", | ||
"module": "dist/index.esm.js", | ||
"types": "dist/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "rimraf dist", | ||
"build": "rollup -c", | ||
"build": "yarn clean && rollup -c && tree dist", | ||
"test": "jest" | ||
@@ -17,0 +18,0 @@ }, |
@@ -6,1 +6,11 @@ # statery | ||
**Do not use this library. It's terrible.** In fact, do not use any other library, either. They're all terrible. | ||
### Assumptions | ||
- A store should only contain data. Mutators should just be normal functions that live outside of the store. | ||
- Consumers of a store are typically only interested in top-level changes to it. | ||
- We need (or rather: want) to support React functional components with hooks only. | ||
### Examples | ||
_TODO_ |
8283
16