chore(deps): update#176
Merged
fmorency merged 14 commits intoliftedinit:mainfrom Oct 15, 2025
Merged
Conversation
✅ Deploy Preview for lifted-alberto ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #176 +/- ##
=======================================
Coverage ? 52.30%
=======================================
Files ? 184
Lines ? 9965
Branches ? 444
=======================================
Hits ? 5212
Misses ? 4738
Partials ? 15 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a major migration from Create React App (CRA) to Vite as the build tool for the project, along with an upgrade to Node.js 22.20.0 and related dependency updates. The changes affect environment variable handling, build/test scripts, dependencies, and CI configuration, and include targeted code updates to support the new toolchain.
Build System Migration and Environment Updates
react-app-rewired) to Vite, updating all build and test scripts inpackage.jsonto use Vite and Vitest, and removing CRA-specific dependencies.REACT_APP_prefixed variables withVITE_prefixes across.env,.env.production, and.env.stagingfiles, and updated code to useimport.meta.envfor variable access. [1] [2] [3] [4]index.htmlentry point for Vite, replacing the previous CRA setup.Node.js and Dependency Upgrades
.nvmrcand.circleci/config.yml, and updated the matrix for CI workflows accordingly. [1] [2] [3] [4] [5]react,react-dom,@chakra-ui/react, and others.Test and CI Adjustments
npm run test:runand Vitest, and adjusted Node version checks for CI workflows. [1] [2]actfromreactinstead ofreact-dom/test-utils, and replaced Jest globals with Vitest equivalents (vi). [1] [2]Codebase Modernization and Compatibility Fixes
isDisabledinstead ofdisabled,w="full"instead ofisFullWidth). [1] [2]AccountSelectorand related files.These changes collectively modernize the codebase, improve build performance, and ensure compatibility with the latest tools and libraries.