Closed didierofrivia closed 6 years ago
I'm not too sure of the problem here. Can you write some steps to reproduce?
Hey! Sure, the way to reproduce it is quite easy:
On a new project:
elm-package install eeue56/elm-html-test
elm-package install rtfeldman/html-test-runner
That should suffice to see the error about dependencies. Then if you check the elm-package.json
you will see the version range installed for eeue56/elm-html-test
is 5.1.1 <= v < 6.0.0
which is incorrect and leads to the said error.
Let me know if you need anything else :)
Thanks again, you rock!
Ah, I see: actually, I think you're using the wrong package. Try this one instead: http://package.elm-lang.org/packages/elm-community/html-test-runner/latest
With that package works like a charm. Still not sure how the versioning in elm-package.json
works, hopefully it will be better in 0.19
.
Thanks, loads! Closing this.
Hi!
When installing the package without specifying the version, like
elm-package install eeue56/elm-html-test
it installs it correctly but inelm-package.json
is listed like"eeue56/elm-html-test": "5.1.1 <= v < 6.0.0",
(being current version1.1.0
). This generates a hell of dependencies errors when trying to install, for instance,rtfeldman/html-test-runner
and/orrtfeldman/node-test-runner
. I'm not sure if this is aelm-html-test
bug or the package manager itself, but I haven't experienced it with any other packages...I.E.:
elm-package.json
and the error:
Thanks for the brilliant job!