-
Notifications
You must be signed in to change notification settings - Fork 201
mono - upgrading vitest, faker, biome, and types #1614
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
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,13 +19,13 @@ | |||||||
| "author": "Jared Wray <me@jaredwray.com>", | ||||||||
| "license": "MIT", | ||||||||
| "devDependencies": { | ||||||||
| "@biomejs/biome": "^2.4.4", | ||||||||
| "@faker-js/faker": "^10.3.0", | ||||||||
| "@types/node": "^25.3.0", | ||||||||
| "@vitest/coverage-v8": "^4.0.18", | ||||||||
| "@vitest/spy": "^4.0.18", | ||||||||
| "@biomejs/biome": "^2.4.10", | ||||||||
| "@faker-js/faker": "^10.4.0", | ||||||||
| "@types/node": "^25.5.2", | ||||||||
| "@vitest/coverage-v8": "^4.1.3", | ||||||||
| "@vitest/spy": "^4.1.3", | ||||||||
| "rimraf": "^6.1.3", | ||||||||
| "vitest": "^4.0.18", | ||||||||
| "vitest": "^4.1.3", | ||||||||
|
Contributor
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.
Suggested change
|
||||||||
| "wrangler": "^4.68.1" | ||||||||
| }, | ||||||||
| "pnpm": { | ||||||||
|
|
||||||||
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.
Vitest and its associated plugins (like
@vitest/coverage-v8and@vitest/spy) are tightly coupled and often require exact version matches for their peer dependencies to function correctly. Using caret ranges (^4.1.3) can lead to peer dependency conflicts if one package is updated independently of the others. It is recommended to use exact versions for these dependencies to ensure stability across the monorepo.