@solidjs/signals 0.4.10 → 0.4.11

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/dev.js CHANGED
@@ -2325,7 +2325,7 @@ function createCollectionBoundary(type, fn, fallback) {
2325
2325
  const decision = new Computation(void 0, () => {
2326
2326
  if (!queue._disabled.read()) {
2327
2327
  const resolved = tree.read();
2328
- if (!queue._disabled.read())
2328
+ if (!untrack(() => queue._disabled.read()))
2329
2329
  return resolved;
2330
2330
  }
2331
2331
  return fallback(queue);
package/dist/node.cjs CHANGED
@@ -2329,7 +2329,7 @@ function createCollectionBoundary(type, fn, fallback) {
2329
2329
  const decision = new Computation(void 0, () => {
2330
2330
  if (!queue.u.read()) {
2331
2331
  const resolved = tree.read();
2332
- if (!queue.u.read())
2332
+ if (!untrack(() => queue.u.read()))
2333
2333
  return resolved;
2334
2334
  }
2335
2335
  return fallback(queue);
package/dist/prod.js CHANGED
@@ -2313,7 +2313,7 @@ function createCollectionBoundary(type, fn, fallback) {
2313
2313
  const decision = new Computation(void 0, () => {
2314
2314
  if (!queue.u.read()) {
2315
2315
  const resolved = tree.read();
2316
- if (!queue.u.read())
2316
+ if (!untrack(() => queue.u.read()))
2317
2317
  return resolved;
2318
2318
  }
2319
2319
  return fallback(queue);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.4.10",
3
+ "version": "0.4.11",
4
4
  "description": "",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",