[Fix] Enable react-refresh on Webpack5

Per default installation, even on `@next`, you'll end up with the following error if you enable `react-refresh` in conjunction with `webpack5`:

````
Error: NormalModuleFactory.afterResolve (CaseSensitivePathsPlugin, ReactRefreshPlugin) is no longer a waterfall hook, but a bailing hook instead. Do not return the passed object, but modify it instead. Returning false will ignore the request and results in no module created.
````

The error can be fixed by manually override the package resolution for `react-refresh` and `@pmmmwh/react-refresh-webpack-plugin` to their latest versions. To render the override obsolete, I would like to kindly ask to request to uplift both dependencies for @next.
This commit is contained in:
Benjamin Bender 2021-07-18 13:18:56 +02:00 committed by GitHub
parent 3c076a333a
commit e02ed36bbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@
"dependencies": {
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.0-rc.2",
"@storybook/addons": "6.4.0-alpha.18",
"@storybook/core": "6.4.0-alpha.18",
"@storybook/core-common": "6.4.0-alpha.18",
@ -64,7 +64,7 @@
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react-dev-utils": "^11.0.3",
"react-refresh": "^0.8.3",
"react-refresh": "^0.10.0",
"read-pkg-up": "^7.0.1",
"regenerator-runtime": "^0.13.7",
"ts-dedent": "^2.0.0",