@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 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 & UNINITIALIZED_BIT)) {
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 & UNINITIALIZED_BIT)) {
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 & UNINITIALIZED_BIT)) {
386
+ if (!(clone.g === UNINITIALIZED_BIT)) {
387
387
  source.dispose(false);
388
388
  source.emptyDisposal();
389
389
  Object.assign(source, clone);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",