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 biggest problem to support this is version ranges. Highest possible might not exit and the lowest one might not be most recent resolving in elm make downloading newer versions of packages (I expect this would fail within sandbox).
There are leftover bits for library support like doc compilation however library compilation is not working because of:
parseElmJsonDeps
is not compatible. Libraries don't havedirect
andindirect
deps - easy fixThe biggest problem to support this is version ranges. Highest possible might not exit and the lowest one might not be most recent resolving in
elm make
downloading newer versions of packages (I expect this would fail withinsandbox
).I believe this was discussed: #14
and also: https://discourse.elm-lang.org/t/resolving-dependencies-in-elm-0-19-package-projects/2589
This situation has a workaround though one can specify lib deps with most current most recent version as instance
"elm/core": "1.0.2 <= v < 2.0.0"
.The text was updated successfully, but these errors were encountered: