react-refresh 0.15.0-next-9ff738f53-20220826 → 0.15.0-next-7028ce745-20220907

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,7 @@ 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
- // $FlowIssue
28
+ // $FlowFixMe
29
29
 
30
30
  var updatedFamiliesByType = new PossiblyWeakMap(); // This is cleared on every performReactRefresh() call.
31
31
  // It is an array of [Family, NextType] tuples.
@@ -40,9 +40,9 @@ var mountedRoots = new Set(); // If a root captures an error, we remember it so
40
40
  var failedRoots = new Set(); // In environments that support WeakMap, we also remember the last element for every root.
41
41
  // It needs to be weak because we do this even for roots that failed to mount.
42
42
  // If there is no WeakMap, we won't attempt to do retrying.
43
- // $FlowIssue
43
+ // $FlowFixMe
44
44
 
45
- var rootElements = // $FlowIssue
45
+ var rootElements = // $FlowFixMe
46
46
  typeof WeakMap === 'function' ? new WeakMap() : null;
47
47
  var isPerformingRefresh = false;
48
48
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "react"
6
6
  ],
7
- "version": "0.15.0-next-9ff738f53-20220826",
7
+ "version": "0.15.0-next-7028ce745-20220907",
8
8
  "homepage": "https://reactjs.org/",
9
9
  "bugs": "https://github.com/facebook/react/issues",
10
10
  "license": "MIT",