jotai-state-tree 1.3.0 → 1.3.2
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 +1 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -67,6 +67,7 @@ Explore our detailed, exhaustive guides to master `jotai-state-tree`:
|
|
|
67
67
|
5. **[React Integration](docs/react-integration.md)** - Observables HOCs, typed context Providers, hooks (`useSnapshot`, `useWatchPath`), and update batching.
|
|
68
68
|
6. **[Advanced Features](docs/advanced-features.md)** - Undo/Redo managers, Time Travel, Action recorders, dynamic plugins/registry, and middleware pipelines.
|
|
69
69
|
7. **[Migration from MobX-State-Tree](docs/mst-migration.md)** - Step-by-step replacement guide, performance comparisons, and key differences.
|
|
70
|
+
8. **[Examples & Templates](docs/examples-and-templates.md)** - 6 pre-configured Vite starter templates, features breakdown, and project scaffolding instructions.
|
|
70
71
|
|
|
71
72
|
---
|
|
72
73
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jotai-state-tree",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "MobX-State-Tree API compatible library powered by Jotai",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -29,7 +29,14 @@
|
|
|
29
29
|
"lint": "eslint src --ext .ts,.tsx",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
31
|
"docs": "typedoc",
|
|
32
|
-
"docs:watch": "typedoc --watch"
|
|
32
|
+
"docs:watch": "typedoc --watch",
|
|
33
|
+
"example:todo": "npm --prefix examples/todo-list-time-travel run dev",
|
|
34
|
+
"example:kanban": "npm --prefix examples/kanban-board-references run dev",
|
|
35
|
+
"example:cart": "npm --prefix examples/shopping-cart-views run dev",
|
|
36
|
+
"example:telemetry": "npm --prefix examples/dashboard-live-telemetry run dev",
|
|
37
|
+
"example:form": "npm --prefix examples/form-builder-dynamic run dev",
|
|
38
|
+
"example:notes": "npm --prefix examples/note-taking-ssr run dev",
|
|
39
|
+
"examples:install": "for dir in examples/*; do [ -d \"$dir\" ] && npm install --prefix \"$dir\"; done"
|
|
33
40
|
},
|
|
34
41
|
"keywords": [
|
|
35
42
|
"jotai",
|
|
@@ -53,6 +60,7 @@
|
|
|
53
60
|
},
|
|
54
61
|
"devDependencies": {
|
|
55
62
|
"@semantic-release/changelog": "^6.0.3",
|
|
63
|
+
"@semantic-release/exec": "^7.1.0",
|
|
56
64
|
"@semantic-release/git": "^10.0.1",
|
|
57
65
|
"@testing-library/jest-dom": "^6.9.1",
|
|
58
66
|
"@testing-library/react": "^16.3.1",
|