@triggery/mobx 0.1.1 → 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +10 -1
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @triggery/mobx
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f23e155: Filled out the quick-start sections in the npm package READMEs that adopters land on first.
8
+
9
+ - `@triggery/core` README now contains a three-tab quick-start (React / Solid / Vue) with concrete `pnpm add` commands and runnable code, plus pointers to the per-binding README for the full walkthrough.
10
+ - `@triggery/react` README — was a stub. Now has the full four-file scenario (trigger + provider + Chat + Toast) ready to copy-paste, exactly mirroring the Solid and Vue examples.
11
+
12
+ Linked-bundle bump so the binding READMEs stay aligned with the core release; no code or API changes.
13
+
14
+ - 3385f5b: Every package README now ends with a tailored **Related packages** section and a consistent `## License` footer.
15
+
16
+ - Adapter packages (`zustand`, `redux`, `jotai`, `mobx`, `reatom`, `signals`, `query`) link to `core` + `react` (required peers) plus 2-3 alternative adapters so adopters can swap them out without re-reading the whole repo.
17
+ - Event-source packages (`dom`, `socket`) cross-link.
18
+ - DevTools packages (`devtools-redux`, `devtools-panel`, `devtools-bridge`) cross-link.
19
+ - Tooling packages (`eslint-plugin`, `codemod`, `cli`) cross-link.
20
+ - Bindings (`react`, `solid`, `vue`) link to each other so users mid-migration know there's a sibling with the same hook API.
21
+ - `@triggery/core/src/index.ts` JSDoc header had stale wording ("orchestration runtime for React business logic") — replaced with framework-agnostic phrasing matching the README.
22
+
23
+ No code or API changes. Drop-in patch.
24
+
25
+ - Updated dependencies [f23e155]
26
+ - Updated dependencies [3385f5b]
27
+ - @triggery/core@0.1.2
28
+ - @triggery/react@0.1.2
29
+
3
30
  ## 0.1.1
4
31
 
5
32
  ### Patch Changes
package/README.md CHANGED
@@ -69,6 +69,15 @@ useMobxCondition<S, K>(
69
69
 
70
70
  `read` is a plain function. Use `.get()` on boxes, dot-access on `observable.object`, etc. — exactly as you'd read MobX state anywhere else.
71
71
 
72
+ ## Related packages
73
+
74
+ - [`@triggery/core`](https://www.npmjs.com/package/@triggery/core) — Required peer.
75
+ - [`@triggery/react`](https://www.npmjs.com/package/@triggery/react) — Required peer.
76
+ - [`@triggery/zustand`](https://www.npmjs.com/package/@triggery/zustand) — Alternative adapter for Zustand stores.
77
+ - [`@triggery/redux`](https://www.npmjs.com/package/@triggery/redux) — Alternative adapter for Redux stores.
78
+
79
+ See the [full package list](https://github.com/triggeryjs/triggery#packages) in the repo README.
80
+
72
81
  ## License
73
82
 
74
- MIT
83
+ MIT &copy; Aleksey Skhomenko
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triggery/mobx",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MobX adapter for Triggery — read observable state from a trigger condition with no reaction setup",
5
5
  "license": "MIT",
6
6
  "author": "Aleksey Skhomenko",
@@ -55,8 +55,8 @@
55
55
  "peerDependencies": {
56
56
  "mobx": "^6.0.0",
57
57
  "react": ">=18.0.0",
58
- "@triggery/core": "0.1.1",
59
- "@triggery/react": "0.1.1"
58
+ "@triggery/core": "0.1.2",
59
+ "@triggery/react": "0.1.2"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@testing-library/react": "^16.3.2",
@@ -68,8 +68,8 @@
68
68
  "tsup": "^8.5.1",
69
69
  "typescript": "^6.0.3",
70
70
  "vitest": "^4.1.6",
71
- "@triggery/core": "0.1.1",
72
- "@triggery/react": "0.1.1"
71
+ "@triggery/core": "0.1.2",
72
+ "@triggery/react": "0.1.2"
73
73
  },
74
74
  "scripts": {
75
75
  "build": "tsup",