solid-js 1.5.0 → 1.5.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.
package/dist/dev.cjs CHANGED
@@ -871,9 +871,7 @@ function runUserEffects(queue) {
871
871
  if (!e.user) runTop(e);else queue[userLength++] = e;
872
872
  }
873
873
  if (sharedConfig.context) setHydrateContext();
874
- Effects = [];
875
874
  for (i = 0; i < userLength; i++) runTop(queue[i]);
876
- if (Effects.length) runUserEffects(Effects);
877
875
  }
878
876
  function lookUpstream(node, ignore) {
879
877
  const runningTransition = Transition && Transition.running;
package/dist/dev.js CHANGED
@@ -867,9 +867,7 @@ function runUserEffects(queue) {
867
867
  if (!e.user) runTop(e);else queue[userLength++] = e;
868
868
  }
869
869
  if (sharedConfig.context) setHydrateContext();
870
- Effects = [];
871
870
  for (i = 0; i < userLength; i++) runTop(queue[i]);
872
- if (Effects.length) runUserEffects(Effects);
873
871
  }
874
872
  function lookUpstream(node, ignore) {
875
873
  const runningTransition = Transition && Transition.running;
package/dist/solid.cjs CHANGED
@@ -810,9 +810,7 @@ function runUserEffects(queue) {
810
810
  if (!e.user) runTop(e);else queue[userLength++] = e;
811
811
  }
812
812
  if (sharedConfig.context) setHydrateContext();
813
- Effects = [];
814
813
  for (i = 0; i < userLength; i++) runTop(queue[i]);
815
- if (Effects.length) runUserEffects(Effects);
816
814
  }
817
815
  function lookUpstream(node, ignore) {
818
816
  const runningTransition = Transition && Transition.running;
package/dist/solid.js CHANGED
@@ -806,9 +806,7 @@ function runUserEffects(queue) {
806
806
  if (!e.user) runTop(e);else queue[userLength++] = e;
807
807
  }
808
808
  if (sharedConfig.context) setHydrateContext();
809
- Effects = [];
810
809
  for (i = 0; i < userLength; i++) runTop(queue[i]);
811
- if (Effects.length) runUserEffects(Effects);
812
810
  }
813
811
  function lookUpstream(node, ignore) {
814
812
  const runningTransition = Transition && Transition.running;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "solid-js",
3
3
  "description": "A declarative JavaScript library for building user interfaces.",
4
- "version": "1.5.0",
4
+ "version": "1.5.1",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "homepage": "https://solidjs.com",