@absolutejs/absolute 0.19.0-beta.754 → 0.19.0-beta.755

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.
@@ -14422,8 +14422,11 @@ var preserveAcrossHmr = (instance, key) => {
14422
14422
  const fullKey = buildCacheKey(instance, key);
14423
14423
  if (fullKey === null)
14424
14424
  return;
14425
- getTracker().add(new WeakRef(instance));
14426
- getKeyMap().set(instance, fullKey);
14425
+ const keyMap = getKeyMap();
14426
+ if (!keyMap.has(instance)) {
14427
+ getTracker().add(new WeakRef(instance));
14428
+ }
14429
+ keyMap.set(instance, fullKey);
14427
14430
  if (!getRebootFlag().value)
14428
14431
  return;
14429
14432
  const restored = restoreFromCacheCore(instance, fullKey);
@@ -14770,5 +14773,5 @@ export {
14770
14773
  ABSOLUTE_HTTP_TRANSFER_CACHE_SKIP_HEADER
14771
14774
  };
14772
14775
 
14773
- //# debugId=6CC624544073C0C364756E2164756E21
14776
+ //# debugId=9D9C1F7007C6AC5764756E2164756E21
14774
14777
  //# sourceMappingURL=index.js.map