-
-
Notifications
You must be signed in to change notification settings - Fork 508
Open
Description
Problem
The current @effect/vitest package (v0.27.0) declares a peer dependency on vitest: "^3.2.0", which causes warnings when used with vitest 4.x:
warn: incorrect peer dependency "vitest@4.0.14"
Vitest 4.0 was released and projects upgrading to it are now seeing peer dependency warnings when using @effect/vitest.
Solution
Update the peerDependencies in @effect/vitest to include vitest 4.x:
{
"peerDependencies": {
"effect": "^3.19.0",
"vitest": "^3.2.0 || ^4.0.0"
}
}Note
This may require testing to ensure compatibility with vitest 4.x APIs. If there are breaking changes in vitest 4, additional code changes may be needed.
lishaduck, IGassmann, rajzik, nicolas-besnard, k70suK3-k06a7ash1 and 5 more
Metadata
Metadata
Assignees
Labels
No labels