-
Notifications
You must be signed in to change notification settings - Fork 474
chore(deps-dev): bump rimraf from 3.0.2 to 6.1.3 #6079
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -220,7 +220,7 @@ | |
| "redux-mock-store": "^1.5.4", | ||
| "redux-thunk": "^3.1.0", | ||
| "regenerator-runtime": "^0.13.5", | ||
| "rimraf": "^3.0.2", | ||
| "rimraf": "^6.1.3", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wildcard paths need glob optionMedium Severity With root Reviewed by Cursor Bugbot for commit bfa613a. Configure here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This upgrade changes the behavior used by existing cleanup scripts: rimraf v4+ requires the Useful? React with 👍 / 👎. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rimraf v6 API mismatchHigh Severity Raising Reviewed by Cursor Bugbot for commit 9f54f65. Configure here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This version is no longer compatible with Useful? React with 👍 / 👎. |
||
| "sass": "npm:sass-embedded", | ||
| "skip-postinstall": "^1.0.0", | ||
| "socket.io-mock": "^1.3.2", | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Legacy rimraf API breaks builds
High Severity
Raising the root devDependency to
rimrafv6 leaves existing CommonJS build helpers on the v3 pattern (require('rimraf')andrimraf.sync). From v5 onward that default-export/syncusage is unsupported, so steps likescripts/prebuild.jsandscripts/DeleteSourceMaps.js(pulled in bybuild:main/ packaging) can throw at runtime instead of cleaning output dirs.Reviewed by Cursor Bugbot for commit bfa613a. Configure here.