@thefoxieflow/signalctx 1.0.4 → 1.0.5

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/dist/index.js CHANGED
@@ -68,6 +68,7 @@ var useSet = ($, selector) => {
68
68
  const ref = $();
69
69
  const targetRef = selector ? selector(ref) : ref;
70
70
  act(targetRef, action);
71
+ $.set(ref);
71
72
  $.notify();
72
73
  };
73
74
  return setter;
package/dist/index.mjs CHANGED
@@ -47,6 +47,7 @@ var useSet = ($, selector) => {
47
47
  const ref = $();
48
48
  const targetRef = selector ? selector(ref) : ref;
49
49
  act(targetRef, action);
50
+ $.set(ref);
50
51
  $.notify();
51
52
  };
52
53
  return setter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thefoxieflow/signalctx",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Lightweight signal-based React context store",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",