Questions tagged [elm-0.18]

Use this tag for Elm questions ONLY IF THE QUESTION IS SPECIFIC TO ELM 0.18, and always with the [elm] tag,. Otherwise, if the question is not specific to any version, please use just [elm].

Elm 0.18 release notes.

Related tags:

5 questions
3
votes
3 answers

elm-make: elm-package.json: openBinaryFile: does not exist

I do a fresh installation: npm i elm@0.18 -g I try to build using: elm-make ./src/scripts/MainModule.elm I get: elm-make: elm-package.json: openBinaryFile: does not exist (No such file or directory) But the elm-package.json file is right there…
Daniel Birowsky Popeski
  • 8,752
  • 12
  • 60
  • 125
1
vote
2 answers

Running Elm 0.18 and 0.19 on the same machine

I have a Mac and elm 0.18 is installed in /usr/local/bin. This was fine since I an using elm 0.18 in a project. Now I am responsible for project that users elm 0.19. Is is possible to have both 0.18 and 0.19 on my machine. for example…
Jon Raynor
  • 3,804
  • 6
  • 29
  • 43
1
vote
1 answer

how to override elm json decoders?

In our project we use standard json encoders to encode our elm data models to json. As a result, I want to get a string that would look like a list of objects [{..}, {..}], but I get a rather unexpected result: an object where the keys are the index…
0
votes
1 answer

Use Time.now to get time zoned date in Elm 0.18

posixDateTask : Task.Task x Time.Date.Date posixDateTask = let timeZoneDate now = Time.Date.date (Time.ZonedDateTime.year (Time.ZonedDateTime.fromDateTime (TimeZones.canada_pacific ()) now)) …
Pay C.
  • 1,048
  • 1
  • 13
  • 20
0
votes
0 answers

elm application keeps changing init url

I have a project I that was dropped onto my lap written in 0.18, when ran it keeps changing the url from a sub url we currently load it from to the base url of the page, for example the elm application is loaded via…