Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign uperror with Elm 0.16 #449
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
jvoigtlaender
Nov 27, 2015
Contributor
My suggestions would be:
First, remove the complete elm-stuff subdirectory.
Then, do either of the following two:
- Remove the
elm-package.jsonfile and do freshelm-package installcalls for all the packages you depend on. - Go through the
elm-package.jsonfile and update bounds so that they match these:
{
"dependencies": {
"elm-lang/core": "3.0.0 <= v < 4.0.0",
"evancz/elm-effects": "2.0.1 <= v < 3.0.0",
"evancz/elm-html": "4.0.2 <= v < 5.0.0",
"evancz/elm-http": "3.0.0 <= v < 4.0.0",
"evancz/elm-markdown": "2.0.0 <= v < 3.0.0",
"evancz/elm-svg": "2.0.1 <= v < 3.0.0",
"evancz/start-app": "2.0.2 <= v < 3.0.0"
},
}|
My suggestions would be: First, remove the complete Then, do either of the following two:
{
"dependencies": {
"elm-lang/core": "3.0.0 <= v < 4.0.0",
"evancz/elm-effects": "2.0.1 <= v < 3.0.0",
"evancz/elm-html": "4.0.2 <= v < 5.0.0",
"evancz/elm-http": "3.0.0 <= v < 4.0.0",
"evancz/elm-markdown": "2.0.0 <= v < 3.0.0",
"evancz/elm-svg": "2.0.1 <= v < 3.0.0",
"evancz/start-app": "2.0.2 <= v < 3.0.0"
},
} |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
igregson
commented
Nov 27, 2015
|
Thanks @jvoigtlaender, did the trick :) |
igregson
closed this
Nov 27, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
igregson commentedNov 26, 2015
After upgrading to Elm 0.16, I get the following error when running
elm-package bump:When trying to update a package manually, such as by running
elm-package update evancz/elm-html, I get this:The problem seems to be related to Elm Core, which is why I'm reporting it here (as instructed in the fabulous error message). However, I'm new to elm so could be missing something completely obvious.
Grateful for any suggestions.