compiler
compiler copied to clipboard
Compiler for Elm, a functional language for reliable webapps.
If you have a long-lived `~/.elm` folder, it may contain dependencies that have been removed or renamed on Github. The most frequent one being `Skinney/murmur3`. Given that situation, it is...
**Quick Summary:** Cannot install Elm 0.16.0 Unfortunately, I have a dependency to Elm 0.16.0 in my package.json. When I run `npm ci` (or `npm install`), I'm getting: ```sh > node...
**Quick Summary:** * I was trying to import a package and I received this message here:  * What does this mean? The message is helpful but does not pose...
I can't use elm on my computer: not even 'elm init' works. I am constantly getting this terminal error message: 'dyld: Symbol not found: _clock_gettime'. So, yeah, I'm stuck in...
**Quick Summary:** Fixed the wording of an error message ## SSCCE ```elm ``` - **Elm:** ??? - **Browser:** ??? - **Operating System:** ??? ## Additional Details ???
**Quick Summary:** Add binary literal syntax to elm, such as `0b1010` would to 10 in decimal. ## SSCCE Enter the following in `elm repl` ```elm > 0b111 | -- WEIRD...
**Quick Summary:** How hard would adding other hosting endpoints really be? I just stumbled over this note in https://github.com/elm/compiler/blob/master/docs/elm.json/package.md: > **Note:** We currently only support GitHub repos to ensure that...
Hi, I found an inconsistency while unifying type variables. ## SSCCE This works as expected, the type `a` unifies with type `b` and we don't get any errors. ```elm k...
**Quick Summary:** Malformed record modify `{ key | }` creates EXTRA COMMA error. ## SSCCE ```elm $ elm repl ---- Elm 0.19.1 ---------------------------------------------------------------- > { key | } -- EXTRA...
**Quick Summary:** When scrolling after hitting the bottom or top of the page with the Elm debugger open Chrome will log the following message to the console: ``` [Intervention] Unable...