@triggery/vite 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,9 +1,22 @@
1
1
  # @triggery/vite
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 35936d1: Polished package metadata for framework-agnostic positioning.
8
+
9
+ - `@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.
10
+ - `@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).
11
+ - `@triggery/devtools-bridge`, `@triggery/devtools-redux`, `@triggery/vite` descriptions clarified as framework-agnostic / runtime-pure.
12
+ - `@triggery/react / solid / vue` descriptions now explicitly say **zero runtime dependencies** — the binding is a thin lifecycle adapter, nothing else.
13
+
14
+ No API or behaviour changes.
15
+
3
16
  ## 0.1.0
4
17
 
5
18
  First public preview release.
6
19
 
7
- Vite plugin for Triggery — auto-import every *.trigger.ts file via a virtual module
20
+ Vite plugin for Triggery — auto-import every \*.trigger.ts file via a virtual module
8
21
 
9
22
  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/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.1",
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"