Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.1.1 - disable runtimeErrors in webpack-dev-server overlay #336

Merged
merged 1 commit into from Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG-FRONTIER.md
@@ -1,3 +1,8 @@
## 8.1.1
- disable new `runtimeErrors` property in webpack-dev-server
- this causes constant errors with ResizeObserver
- requires webpack-dev-server 4.13.0

## 8.1.0
- adding `dir` property to html element in layout.ejs
- `dir` is set with `languageDir` defined in snow's res-locals.js middleware
Expand Down
53 changes: 41 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/react-scripts/config/webpackDevServer.config.js
Expand Up @@ -92,6 +92,7 @@ module.exports = function (proxy, allowedHost) {
overlay: {
errors: true,
warnings: false,
runtimeErrors: false,
},
},
devMiddleware: {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-scripts/package.json
@@ -1,6 +1,6 @@
{
"name": "@fs/react-scripts",
"version": "8.1.0",
"version": "8.1.1",
"upstreamVersion": "5.0.1",
"description": "Configuration and scripts for Create React App.",
"repository": {
Expand Down Expand Up @@ -111,7 +111,7 @@
"ts-pnp": "1.2.0",
"url-loader": "4.1.1",
"webpack": "^5.64.4",
"webpack-dev-server": "^4.6.0",
"webpack-dev-server": "^4.13.0",
"webpack-manifest-plugin": "^4.0.2",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2",
Expand Down