You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Problem
The current
@effect/vitestpackage (v0.27.0) declares a peer dependency onvitest: "^3.2.0", which causes warnings when used with vitest 4.x:Vitest 4.0 was released and projects upgrading to it are now seeing peer dependency warnings when using
@effect/vitest.Solution
Update the
peerDependenciesin@effect/vitestto 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.