Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"three": "^0.137.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/core": "^8.0.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Babel core eight loader seven

High Severity

@babel/core is moved to ^8.0.1 while babel-loader stays on ^8.2.3, which declares a peer of @babel/core ^7.0.0. The dev webpack pipeline transpiles .js/.tsx through babel-loader, so this mismatch can break builds or fail installs under strict peer checks.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 900aacf. Configure here.

"@babel/preset-env": "^7.16.8",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-loader": "^8.2.3",
Expand All @@ -27,6 +27,6 @@
"fork-ts-checker-webpack-plugin": "^6.2.0",
"webpack": "^5.27.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
"webpack-dev-server": "^6.0.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Webpack below dev-server peer

High Severity

webpack-dev-server ^6.0.0 expects webpack ^5.101.0, but this workspace still pins webpack at ^5.27.2 (including the root resolutions entry). After install, webpack serve can fail or behave incorrectly because the dev server targets APIs and fixes not present in 5.27.x.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 900aacf. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev-server v6 invalid options

High Severity

Raising webpack-dev-server to ^6.0.0 without updating dev/webpack/config.js leaves devServer.contentBase and devServer.inline, which v4+ rejects. yarn dev / webpack serve typically exits immediately with an invalid devServer options schema error, so local development does not start.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 900aacf. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev-server needs Node 22

Medium Severity

webpack-dev-server 6.0.0 requires Node.js >=22.15.0. This repo targets older Node tooling (for example @types/node ^18.6.3 at the root), so developers or CI on Node 18/20 may be unable to run the dev server after this bump.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 900aacf. Configure here.

}
}