Clean up dependencies#11
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request updates Jest and its associated type definitions to version 30, while also replacing the dependency overrides for minimatch and picomatch with test-exclude and brace-expansion. A suggestion was made to pin the versions of these new overrides to improve dependency stability.
| "test-exclude": "^8.0.0", | ||
| "brace-expansion": "^5.0.5" |
There was a problem hiding this comment.
For better dependency stability and to prevent unexpected updates, it's a good practice to pin the versions in the overrides section. This ensures that npm install will always use the exact specified version, avoiding potential issues from automatic minor or patch updates.
I suggest pinning test-exclude to 8.0.0 and brace-expansion to 5.0.5.
| "test-exclude": "^8.0.0", | |
| "brace-expansion": "^5.0.5" | |
| "test-exclude": "8.0.0", | |
| "brace-expansion": "5.0.5" |
Uh oh!
There was an error while loading. Please reload this page.