jaxs 0.9.6 → 0.9.7

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/jaxs.js CHANGED
@@ -685,7 +685,7 @@ const Rt = (e) => (t, s) => {
685
685
  Ut =
686
686
  (e) =>
687
687
  (t, { timeout: s, payload: r }) => {
688
- const n = ({ callCount: o, stop: a }) => (o > 1 && a(), s),
688
+ const n = ({ callCount: o, stop: a }) => (o >= 1 && a(), s),
689
689
  i = new _({
690
690
  publish: e,
691
691
  event: t,
package/dist/jaxs.umd.cjs CHANGED
@@ -651,7 +651,7 @@
651
651
  Qt =
652
652
  (e) =>
653
653
  (t, { timeout: s, payload: r }) => {
654
- const n = ({ callCount: o, stop: c }) => (o > 1 && c(), s),
654
+ const n = ({ callCount: o, stop: c }) => (o >= 1 && c(), s),
655
655
  i = new _({ publish: e, event: t, payload: r, timer: n })
656
656
  return i.start(), i.stop
657
657
  },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "jaxs",
3
3
  "description": "Modular J/TSX application framework",
4
4
  "private": false,
5
- "version": "0.9.6",
5
+ "version": "0.9.7",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "build": "vite build; npm run lint",