react-refresh 0.15.0-next-338e6a967-20221004 → 0.15.0-next-65b3449c8-20221005

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.
@@ -25,7 +25,6 @@ var allFamiliesByID = new Map();
25
25
  var allFamiliesByType = new PossiblyWeakMap();
26
26
  var allSignaturesByType = new PossiblyWeakMap(); // This WeakMap is read by React, so we only put families
27
27
  // that have actually been edited here. This keeps checks fast.
28
- // $FlowFixMe
29
28
 
30
29
  var updatedFamiliesByType = new PossiblyWeakMap(); // This is cleared on every performReactRefresh() call.
31
30
  // It is an array of [Family, NextType] tuples.
@@ -40,10 +39,8 @@ var mountedRoots = new Set(); // If a root captures an error, we remember it so
40
39
  var failedRoots = new Set(); // In environments that support WeakMap, we also remember the last element for every root.
41
40
  // It needs to be weak because we do this even for roots that failed to mount.
42
41
  // If there is no WeakMap, we won't attempt to do retrying.
43
- // $FlowFixMe
44
42
 
45
- var rootElements = // $FlowFixMe
46
- typeof WeakMap === 'function' ? new WeakMap() : null;
43
+ var rootElements = typeof WeakMap === 'function' ? new WeakMap() : null;
47
44
  var isPerformingRefresh = false;
48
45
 
49
46
  function computeFullKey(signature) {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "react"
6
6
  ],
7
- "version": "0.15.0-next-338e6a967-20221004",
7
+ "version": "0.15.0-next-65b3449c8-20221005",
8
8
  "homepage": "https://reactjs.org/",
9
9
  "bugs": "https://github.com/facebook/react/issues",
10
10
  "license": "MIT",