compiler
compiler copied to clipboard
Compiler for Elm, a functional language for reliable webapps.
**Quick Summary:** The import cycle that the Elm compiler sometimes prints does not correspond to the real import cycle. Here's an example from one project I work on (closed-source, so...
**Quick Summary:** `https://github.com/ivadzy/bbase64` is now `https://github.com/chelovek0v/bbase64` and it's breaking `elm make src/Main.elm` ## ERROR MESSAGE ``` I was trying to download the source code for ivadzy/bbase64 1.1.1, so I tried...
**Quick Summary:** Trying to compile a module with a name that's used by another module eg. `Process` (conflicting with the one in elm/core) results in an error message which basically...
**Quick Summary:** Ran into a known bug that prevents publishing my package with Elm 0.19.1. This just adds another data-point to issue #2055 (like #2098). ## SSCCE ```sh $ elm...
It seems that the `elm` executable is unable to properly download/parse the docs for `elm-geometry` 3.4.0 (3.3.0 seems fine), which interferes with diffing/publishing. ## SSCCE If you run ``` elm...
**Quick Summary:** When running `elm bump` on [`justgook/alt-linear-algebra`](https://package.elm-lang.org/packages/justgook/alt-linear-algebra/1.0.0/) with `elm 0.19.1`, we get the following error: ``` $ elm bump -- PROBLEM LOADING DOCS -------------------------------------------------------- I need the docs for...
**Quick Summary:** The compiler crashes with the following message: ``` Compiling (1)elm: Map.!: given key is not an element in the map CallStack (from HasCallStack): error, called at ./Data/Map/Internal.hs:610:17 in...
**Quick Summary:** Moving an opaque custom type and replacing it by an alias to the moved custom type is considered a breaking change. ## SSCCE Imagine we have a published...
**Quick Summary:** `elm diff` outputs that my function signature is a breaking the API of my package if I redefine its arguments as a type alias. I think this is...
- This is a regression report from elm 0.19.0 to 0.19.1. - When I run `elm-0.19.0 make --docs=documentation.json` in a kernel package it successfully generates the docs and exits with...