compiler
compiler copied to clipboard
Compiler for Elm, a functional language for reliable webapps.
When a function annotation includes a type that contains ```elm type alias Identity a = a ``` with an inferred type variable ```elm map : (a -> b) -> Identity...
**Quick Summary:** To develop apps with JS-Interop it would be great if reactor would set init to null, so that on the Elm side you can declare main like `main:...
If I have a type error when defining a record the compiler will give an error message with the most valuable information using color alone. E.g. ``` type alias Model...
**Quick Summary:** I want a way to install a package knowing only its major version like `elm install author/package@2`. This is a proposal that is an addition to the proposals...
**Quick Summary:** When publishing a package, the compiler will bundle all the files in `src/`, even if they're not relevant to the compilation. ## SSCCE As explained in https://github.com/ryannhg/elm-spa/issues/132, [`ryanhhg/elm-spa`...
**Quick Summary:** Some packages are published with unused dependencies. A dependency can create lock-in of another dependency' version, and therefore unused dependencies can unnecessarily prevent two packages from being used...
**Quick Summary:** Some packages are published with values and functions that reference a type, but that type is not exposed. This causes problems because it makes it impossible to annotate...
**Quick Summary:** Elm make running in parallel corrupts `elm-stuff/0.19.1/i.dat` - **Elm:** 0.19.1 - **Browser:** N/A - **Operating System:** Ubuntu 16.04 Running elm-make in parallel to compile different entry points every...
**Quick Summary:** Compilation hangs and an elm process remains active after ``. Memory usage of this process reaches >16GB (memory available to system) which bogged down my system. ## SSCCE...
**Quick Summary:** Fix: Error display breaks on long text - the left and right part of the source code is clipped. ## SSCCE ```elm string< = "..............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................." ``` It looks...