tinybase-mergeable-history 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.
- package/README.md +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# tinybase-mergeable-history
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/tinybase-mergeable-history)
|
|
4
|
+
[](https://www.npmjs.com/package/tinybase-mergeable-history)
|
|
5
|
+
[](https://bundlephobia.com/package/tinybase-mergeable-history)
|
|
6
|
+
[](https://www.npmjs.com/package/tinybase-mergeable-history)
|
|
7
|
+
[](./LICENSE)
|
|
8
|
+
|
|
3
9
|
Persistent, syncable, **CRDT-aware** undo/redo history for [TinyBase](https://tinybase.org).
|
|
4
10
|
|
|
5
11
|
TinyBase's built-in [`Checkpoints`](https://tinybase.org/api/checkpoints/) keep an undo stack in memory: it is lost on reload, scoped to a single client, and unaware of `MergeableStore` merges. `tinybase-mergeable-history` takes the opposite approach — **history is stored as data inside the store itself** (in a `_history` table). Because the history lives in the store, it travels with:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinybase-mergeable-history",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Persistent, syncable, CRDT-aware undo/redo history for TinyBase MergeableStore. Unlike built-in Checkpoints, history is stored as data inside the store, so it survives reloads and merges across clients.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"module": "build/index.mjs",
|