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
I often find myself in a cursed state with my node_modules. Where for example I have a package like @codemirror/search with a different version of @codemirror/state than my root @codemirror/state (it's often worse than just 2 packages). From there I have to perform manual surgery on my lock file to make sure all my packages have the right @codemirror/state.
If @codemirror/x packages relied on each other via peerDependency (for users) and devDependency (for development) then we wouldn't have this problem.
The text was updated successfully, but these errors were encountered:
I often find myself in a cursed state with my node_modules. Where for example I have a package like
@codemirror/search
with a different version of@codemirror/state
than my root@codemirror/state
(it's often worse than just 2 packages). From there I have to perform manual surgery on my lock file to make sure all my packages have the right@codemirror/state
.If
@codemirror/x
packages relied on each other viapeerDependency
(for users) anddevDependency
(for development) then we wouldn't have this problem.The text was updated successfully, but these errors were encountered: