-
Notifications
You must be signed in to change notification settings - Fork 33
Update devDependencies to latest versions #125
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?
Conversation
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.
Pull Request Overview
This PR updates testing and mocking libraries to their latest versions in devDependencies.
- Bumps
mocha
from ~3.0.2 to ~11.7.1 - Bumps
chai
from ~3.0.0 to ~5.2.0 - Bumps
mockery
from ~1.7.0 to ~2.1.0 - Bumps
cheerio
from ~0.22.0 to ~1.1.0
Comments suppressed due to low confidence (1)
package.json:49
- After upgrading major versions of testing frameworks, ensure the existing test suite passes and add compatibility tests for any breaking changes in Mocha or Chai.
"mocha": "~11.7.1",
"mocha": "~3.0.2", | ||
"chai": "~3.0.0", | ||
"mockery": "~1.7.0", | ||
"mocha": "~11.7.1", |
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.
[nitpick] Consider using caret ranges (e.g., ^11.7.1) instead of tilde to receive minor and patch updates automatically.
"mocha": "~11.7.1", | |
"mocha": "^11.7.1", |
Copilot uses AI. Check for mistakes.
package.json
Outdated
"jshint": "~2.13.6", | ||
"mocha": "~3.0.2", | ||
"chai": "~3.0.0", | ||
"mockery": "~1.7.0", | ||
"mocha": "~11.7.1", | ||
"chai": "~5.2.0", | ||
"mockery": "~2.1.0", | ||
"spooks": "~2.0.0", | ||
"cheerio": "~0.22.0" | ||
"cheerio": "~1.1.0" |
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.
[nitpick] Sort devDependencies alphabetically to improve readability and maintainability.
Copilot uses AI. Check for mistakes.
Uh oh!
There was an error while loading. Please reload this page.