@t8/react-store 1.0.0 → 1.0.1

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 +4 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -102,3 +102,7 @@ Live demos:<br>
102
102
  [Live demo with Immer](https://codesandbox.io/p/sandbox/rn4qsr?file=%2Fsrc%2FPlusButton.jsx)
103
103
 
104
104
  🔹 A store initialized outside a component can be used as the component's remount-persistent state.
105
+
106
+ ---
107
+
108
+ - [Shared async action state tracking](https://github.com/t8dev/react-pending)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/react-store",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Straightforward and minimalist shared state management for React apps",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -8,7 +8,8 @@
8
8
  "build": "npx npm-run-all clean compile",
9
9
  "clean": "node -e \"require('node:fs').rmSync('dist', {force: true, recursive: true});\"",
10
10
  "compile": "npx esbuild index.ts --bundle --outdir=dist --platform=neutral --external:react",
11
- "prepublishOnly": "npm run build",
11
+ "gh-pages": "npx ghstage --color-scheme=mediumseagreen --ymid=103784239 --backstory=https://axtk.github.io/x/t8_react_store",
12
+ "prepublishOnly": "npx npm-run-all build gh-pages",
12
13
  "preversion": "npx npm-run-all shape build",
13
14
  "shape": "npx codeshape"
14
15
  },