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
{{ message }}
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
If I have a project which has an older version of a package elm make will fail giving an error related to wrong usage e.g.
elm-package say that packageX should be 2.1, but version 2.0 is installed in my system. This happens because someone else updated packageX in elm-package. Then when running elm-make I see:
Cannot find variable `PackageX.foo`.
68| PackageX.foo
`PackageX` does not expose `foo`.
Where foo was introduced in 2.1 of that package.
So I think that there is some problem with our app. But the real problem is that I haven't installed the updated package.
It would be great if elm make could give me an error like: "elm-package requires packageX 2.1, you have installed 2.0`
The text was updated successfully, but these errors were encountered:
If I have a project which has an older version of a package elm make will fail giving an error related to wrong usage e.g.
elm-package
say thatpackageX
should be 2.1, but version 2.0 is installed in my system. This happens because someone else updatedpackageX
inelm-package
. Then when running elm-make I see:Where
foo
was introduced in 2.1 of that package.So I think that there is some problem with our app. But the real problem is that I haven't installed the updated package.
It would be great if elm make could give me an error like: "elm-package requires packageX 2.1, you have installed 2.0`
The text was updated successfully, but these errors were encountered: