Duplicate package versions
I'm getting this TS error:
(i assume) it's caused by two different versions of
@auth/core
, the old one, and the new one I just upgraded to via deno outdated --update --latest
in pnpm, I'd resolve this with pnpm dedupe
, but I don't see an obvious way to do this with deno? I tried removing the deno.lock
and node_modules
and reinstalling, but I'm still getting the same issue :thinkspin:1 Reply
oh heck, I just realized
the second package in question has the peer
@auth/core: ^0.36.0
, and the caret at major 0 treats minors as majors
I guess I'll just downgrade it then :akkoshrug: