aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-31 14:49:58 +0900
committernsfisis <nsfisis@gmail.com>2025-12-31 14:51:37 +0900
commit128db64ed1a08b80a23e3c397b07a91ba1ac2e7c (patch)
tree3f2d0a146d62f7faef8bb436a4e7819a86e27c9c /docs
parentcac5579ba7cc1975ef7fa2ea999afd7258151b64 (diff)
downloadkioku-128db64ed1a08b80a23e3c397b07a91ba1ac2e7c.tar.gz
kioku-128db64ed1a08b80a23e3c397b07a91ba1ac2e7c.tar.zst
kioku-128db64ed1a08b80a23e3c397b07a91ba1ac2e7c.zip
feat(crdt): add Automerge dependencies for CRDT sync
Install @automerge/automerge, @automerge/automerge-repo, and @automerge/automerge-repo-storage-indexeddb as the foundation for replacing LWW conflict resolution with CRDT-based sync. Includes tests verifying core Automerge functionality: - Document creation and modification - Change generation and application - Concurrent change merging - Serialization/deserialization 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/roadmap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/roadmap.md b/docs/dev/roadmap.md
index ea9a70d..5665927 100644
--- a/docs/dev/roadmap.md
+++ b/docs/dev/roadmap.md
@@ -11,7 +11,7 @@ Replace the current Last-Write-Wins (LWW) conflict resolution with Automerge CRD
### Phase 1: Add Automerge and Core Types
-- [ ] Install dependencies: `@automerge/automerge`, `@automerge/automerge-repo`, `@automerge/automerge-repo-storage-indexeddb`
+- [x] Install dependencies: `@automerge/automerge`, `@automerge/automerge-repo`, `@automerge/automerge-repo-storage-indexeddb`
- [ ] Create `src/client/sync/crdt/types.ts` - Automerge document type definitions
- [ ] Create `src/client/sync/crdt/document-manager.ts` - Automerge document lifecycle management
- [ ] Create `src/client/sync/crdt/index.ts` - Module exports