@triggery/vite 0.1.0 → 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.
package/CHANGELOG.md CHANGED
@@ -1,9 +1,44 @@
1
1
  # @triggery/vite
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
+ ## 0.1.1
26
+
27
+ ### Patch Changes
28
+
29
+ - 35936d1: Polished package metadata for framework-agnostic positioning.
30
+
31
+ - `@triggery/core` description corrected: it is **framework-agnostic** (React, Solid, Vue, or any binding you write), not React-only. Keywords now include `solid`, `vue`, `framework-agnostic`, `zero-dependencies`. README expanded to spell out what runs where.
32
+ - `@triggery/testing` README + description now mention **zero runtime dependencies** and that the kit works under Vitest, Jest, and `node:test` alike (no `vi.useFakeTimers` coupling).
33
+ - `@triggery/devtools-bridge`, `@triggery/devtools-redux`, `@triggery/vite` descriptions clarified as framework-agnostic / runtime-pure.
34
+ - `@triggery/react / solid / vue` descriptions now explicitly say **zero runtime dependencies** — the binding is a thin lifecycle adapter, nothing else.
35
+
36
+ No API or behaviour changes.
37
+
3
38
  ## 0.1.0
4
39
 
5
40
  First public preview release.
6
41
 
7
- Vite plugin for Triggery — auto-import every *.trigger.ts file via a virtual module
42
+ Vite plugin for Triggery — auto-import every \*.trigger.ts file via a virtual module
8
43
 
9
44
  See the [repository-level CHANGELOG](../../CHANGELOG.md#010--2026-05-16) for the full set of packages and the umbrella feature list. Future entries on this file are appended automatically by changesets.
package/README.md CHANGED
@@ -40,6 +40,13 @@ That's it — every file matching the glob is auto-imported, so its top-level `c
40
40
  * Editing an existing trigger file just re-runs its `createTrigger(...)` — the runtime's last-mount-wins replaces the old registration. No special handling needed.
41
41
  * Adding / removing / renaming a trigger file invalidates the virtual module so its import list is rebuilt on the next request.
42
42
 
43
+ ## Related packages
44
+
45
+ - [`@triggery/core`](https://www.npmjs.com/package/@triggery/core) — Required peer — runtime where discovered triggers register.
46
+ - [`@triggery/react`](https://www.npmjs.com/package/@triggery/react) — Most common combination with this plugin.
47
+
48
+ See the [full package list](https://github.com/triggeryjs/triggery#packages) in the repo README.
49
+
43
50
  ## License
44
51
 
45
52
  MIT © Aleksey Skhomenko
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triggery/vite",
3
- "version": "0.1.0",
4
- "description": "Vite plugin for Triggery — auto-import every *.trigger.ts file via a virtual module",
3
+ "version": "0.1.2",
4
+ "description": "Vite plugin for Triggery — auto-imports every *.trigger.ts via a virtual module + HMR. Framework-agnostic (works alongside React, Solid, Vue).",
5
5
  "license": "MIT",
6
6
  "author": "Aleksey Skhomenko",
7
7
  "homepage": "https://triggeryjs.github.io/triggery",
@@ -49,7 +49,8 @@
49
49
  ],
50
50
  "sideEffects": false,
51
51
  "publishConfig": {
52
- "access": "public"
52
+ "access": "public",
53
+ "provenance": true
53
54
  },
54
55
  "dependencies": {
55
56
  "tinyglobby": "^0.2.10"