You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Creates a helper that performs a delayed React refresh.
67
82
* @returns {function(function(): void): void} A debounced React refresh function.
@@ -167,14 +182,11 @@ function registerExportsForReactRefresh(moduleExports, moduleId) {
167
182
* Compares previous and next module objects to check for mutated boundaries.
168
183
*
169
184
* This implementation is based on the one in [Metro](https://github.com/facebook/metro/blob/907d6af22ac6ebe58572be418e9253a90665ecbd/packages/metro/src/lib/polyfills/require.js#L776-L792).
170
-
* @param {*} prevExports The current Webpack module exports object.
171
-
* @param {*} nextExports The next Webpack module exports object.
185
+
* @param {*} prevSignature The signature of the current Webpack module exports object.
186
+
* @param {*} nextSignature The signature of the next Webpack module exports object.
172
187
* @returns {boolean} Whether the React refresh boundary should be invalidated.
0 commit comments