@triggery/redux 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 +17 -0
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @triggery/redux
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
+
16
+ - Updated dependencies [35936d1]
17
+ - @triggery/core@0.1.1
18
+ - @triggery/react@0.1.1
19
+
3
20
  ## 0.1.0
4
21
 
5
22
  First public preview release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triggery/redux",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Redux adapter for Triggery — read store state from a trigger condition without subscribing the component to re-renders",
5
5
  "license": "MIT",
6
6
  "author": "Aleksey Skhomenko",
@@ -49,13 +49,14 @@
49
49
  ],
50
50
  "sideEffects": false,
51
51
  "publishConfig": {
52
- "access": "public"
52
+ "access": "public",
53
+ "provenance": true
53
54
  },
54
55
  "peerDependencies": {
55
56
  "react": ">=18.0.0",
56
57
  "redux": "^4.0.0 || ^5.0.0",
57
- "@triggery/react": "0.1.0",
58
- "@triggery/core": "0.1.0"
58
+ "@triggery/core": "0.1.1",
59
+ "@triggery/react": "0.1.1"
59
60
  },
60
61
  "devDependencies": {
61
62
  "@testing-library/react": "^16.3.2",
@@ -67,8 +68,8 @@
67
68
  "tsup": "^8.5.1",
68
69
  "typescript": "^6.0.3",
69
70
  "vitest": "^4.1.6",
70
- "@triggery/core": "0.1.0",
71
- "@triggery/react": "0.1.0"
71
+ "@triggery/core": "0.1.1",
72
+ "@triggery/react": "0.1.1"
72
73
  },
73
74
  "scripts": {
74
75
  "build": "tsup",