cmditch / elm-ethereum

dApps in Elm
https://package.elm-lang.org/packages/cmditch/elm-ethereum/1.0.1/
BSD 3-Clause "New" or "Revised" License
146 stars 21 forks source link

Add elm-lang/html to dependencies #55

Closed junjchen closed 6 years ago

junjchen commented 6 years ago

Add elm-lang/html to dependencies list in elm-packages.json

Reason: Was shown error messages below when try to load Main.Elm in ./examples/simple

I cannot find module 'Html'.

Module 'Main' is trying to import it.

Potential problems could be:
  * Misspelled the module name
  * Need to add a source directory or new dependency to elm-package.json
cmditch commented 6 years ago

If you cd examples/simple and ./runserver the elm-packages.json in there has the needed html library.

elm-ethereum itself has no html dependencies, so no need to add it in the main lib.

Hope that helps, Cheers!

junjchen commented 6 years ago

Ah make sense, cheers