-
Notifications
You must be signed in to change notification settings - Fork 9
chore: upgrade deps. #97
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
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 upgrades project dependencies including Node.js, Storybook, React, and various development tools to their latest versions. The upgrade also includes some configuration cleanup and version constraint enforcement.
- Node.js upgraded from 20.18.1 to 22.18.0 across all GitHub workflows
- Storybook upgraded from v8.x to v9.1.1 with configuration simplification
- React and related packages updated to v19.1.1 with dependency cleanup
Reviewed Changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
packages/tts-react/package.json | Version bump to 4.1.1 and repository URL format update |
packages/story/package.json | Storybook upgrade to v9.1.1, React upgrade, and dependency cleanup |
packages/story/.storybook/main.ts | Removed deprecated Storybook addons and configuration |
package.json | Major dependency upgrades and added engine strict enforcement |
.github/workflows/*.yml | Node.js version upgraded to 22.18.0 across all workflows |
package.json
Outdated
"node": ">=20.18.1", | ||
"npm": ">=10.8.2" | ||
}, | ||
"engineStrict": true, |
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.
Adding engineStrict: true
will cause npm to fail if the Node.js version doesn't exactly match the engines requirement. Consider if this strict enforcement is desired, as it may prevent installation on compatible but slightly different Node versions.
"engineStrict": true, |
Copilot uses AI. Check for mistakes.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #97 +/- ##
=======================================
Coverage 98.37% 98.37%
=======================================
Files 7 7
Lines 614 614
Branches 157 158 +1
=======================================
Hits 604 604
Misses 10 10 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
No description provided.