-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Elm 0.19. #7
Conversation
client/Main.elm
Outdated
import Html.Events exposing (..) | ||
import Http | ||
import Api exposing (..) | ||
import Debug |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you get rid of Debug
since it is not allowed to be used in production code or published packages? In 0.19 there are only functions for numbers and toString
has to be implemented by the user.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll fix this up later tonight. I was just getting something minimally working, and know Debug
got deprecated (and a good thing too!).
That's fast. Thanks a lot, @FranklinChen |
Looks like the |
Unfortunately, it's hard to test and view changes when the Elm code still doesn't compile because the generated |
#8 is based on the work done in this PR. Thanks @FranklinChen |
Address #6 with the caveat that we are waiting on haskell-servant/servant-elm#44 for everything to fully work.