@solidjs/signals 0.4.7 → 0.4.8
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 +1 -1
- package/dist/node.cjs +1 -1
- package/dist/prod.js +1 -1
- package/package.json +1 -1
package/dist/dev.js
CHANGED
|
@@ -386,7 +386,7 @@ function finishTransition(transition2) {
|
|
|
386
386
|
continue;
|
|
387
387
|
if (clone._sources)
|
|
388
388
|
replaceSourceObservers(clone, transition2);
|
|
389
|
-
if (!(clone._stateFlags
|
|
389
|
+
if (!(clone._stateFlags === UNINITIALIZED_BIT)) {
|
|
390
390
|
source.dispose(false);
|
|
391
391
|
source.emptyDisposal();
|
|
392
392
|
Object.assign(source, clone);
|
package/dist/node.cjs
CHANGED
|
@@ -386,7 +386,7 @@ function finishTransition(transition2) {
|
|
|
386
386
|
continue;
|
|
387
387
|
if (clone.a)
|
|
388
388
|
replaceSourceObservers(clone, transition2);
|
|
389
|
-
if (!(clone.g
|
|
389
|
+
if (!(clone.g === UNINITIALIZED_BIT)) {
|
|
390
390
|
source.dispose(false);
|
|
391
391
|
source.emptyDisposal();
|
|
392
392
|
Object.assign(source, clone);
|
package/dist/prod.js
CHANGED
|
@@ -383,7 +383,7 @@ function finishTransition(transition2) {
|
|
|
383
383
|
continue;
|
|
384
384
|
if (clone.a)
|
|
385
385
|
replaceSourceObservers(clone, transition2);
|
|
386
|
-
if (!(clone.g
|
|
386
|
+
if (!(clone.g === UNINITIALIZED_BIT)) {
|
|
387
387
|
source.dispose(false);
|
|
388
388
|
source.emptyDisposal();
|
|
389
389
|
Object.assign(source, clone);
|