@unbndl/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 +12 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # `@unbndl/store`
2
+
3
+ This package is a lightweight framework for client-side state management,
4
+ based on the Elm Architecture (TEA, aka MVU—Model, View, Update)
5
+ with a focus on
6
+ [web components](https://developer.mozilla.org/en-US/docs/Web/API/Web_components).
7
+
8
+ > Use of this package is demonstrated in the
9
+ > upcoming book _Web Development, Unbundled_, by Ken Kubiak.
10
+
11
+ For documentation on all Unbundled packages, refer to the
12
+ [Github repo](https://github.com/mnmlstme/unbundled/blob/main/docs/index.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unbndl/store",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Unbundled library for maintaining client-side state in a store, following the Elm architecture and MVU",
5
5
  "main": "./dist/store.js",
6
6
  "type": "module",