-
https://github.com/elm-explorations/test/blob/f42d322fdb524289b7edf91c4e68028389d862bb/src/Expect.elm#L747-L748
This creates some problems with `elm-verify-examples`. See https://github.com/stoeffe…
-
Is there a reason Task requests don't accept the `tracker` field to track progress?
https://package.elm-lang.org/packages/elm/http/latest/Http#task
compare to
https://package.elm-lang.org/package…
-
As an Elm beginner, I quickly got to a point where I had a custom `index.html` file (to link in my custom CSS files) which mounted my `src/Main.elm` file. For example, I almost always start a project …
-
### Bug
after installing create-elm-app with npm
running (as user of root)
```
$ create-elm-app mijn-portofolie
Creating mijn-portofolie project...
Failed to install elm packages
…
wibrt updated
4 years ago
-
As of #160, we can proxy requests from `"/api"` to `"http://localhost:5000/api"`, by specifying
```json
"proxy": {
"/api": "http://localhost:5000"
}
```
_but_ we're not able to proxy requests …
-
I was upgrading 0.18 to 0.19, and got an updated elm.json.
Then, the plan was to start compiling the files bottom up, but that wasn't possible. Instead I got
> The dependencies in your elm.json…
-
```
Hi,
I'm cleaning chrome cookies using selenium navigation. (I'm doing it between
tests to save the time of re-opening the browser).
If I try browsing to a URL after the cleaning, selenium will d…
-
## Bugs
Before submitting a bug report:
- [x] Double-check that the bug is persistent,
- [x] Double-check the bug hasn't already been reported [on our issue tracker](https://github.com/issues?utf…
-
When parsing the following program, and then writing it again all comments are lost.
SSCCE:
```elm
module Test exposing (main)
import Elm.Parser
import Elm.Processing
import Elm.Syntax.File as…
-
Currently (I am using *Elm* 0.19.0, OS is Archlinux), to generate a HTML page, I only can write a command like this:
```sh
$ elm make Main.elm --output=index.html
```
*(Assuming that there are Mai…