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
The can@5.33.2 package takes locked version dependencies on can-observable-array@0.8.2 and can-connect@3.2.5. can-connect@3.2.5 in turn takes an open-ended dependency ^0.7.0 for can-observable-array.
But because it is a zero major version, the eligible range is effectively locked to [0.7.0 ... 0.8.0).
NPM cannot consolidate these two versions for deduping and thus gives can-connect its own local copy of can-observable-array@0.7.0
The text was updated successfully, but these errors were encountered:
@rjgotten to have less bloat i always use the ecosystem.mjs this reduces the dependency package hell. let all your code depend on the mjs build that also reduces install time simply wget it from unpkg.com i would not use the npm packages.
The
can@5.33.2
package takes locked version dependencies oncan-observable-array@0.8.2
andcan-connect@3.2.5
.can-connect@3.2.5
in turn takes an open-ended dependency^0.7.0
forcan-observable-array
.But because it is a zero major version, the eligible range is effectively locked to
[0.7.0 ... 0.8.0)
.NPM cannot consolidate these two versions for deduping and thus gives
can-connect
its own local copy ofcan-observable-array@0.7.0
The text was updated successfully, but these errors were encountered: