Richard Feldman
Richard Feldman
Encountered this on our Linux CI server, but could not reproduce locally on OS X: ``` Error when searching for modules exposed by elm-package.json: Could not find module 'Shrink' Potential...
I should SSCCE this, but in the meantime: reporting it so I don't lose track of it. Basic problem is that when `elm-package` checks for `@docs` it ignores them if...
To reproduce, start a new project with these dependencies: ``` json "dependencies": { "elm-lang/core": "2.1.0
When you try to publish a GitHub repo that is marked Private instead of Public, you get this: ``` This package has never been published before. Here's how things work:...
## Motivation There are a few longstanding issues with `elm-json-decode-pipeline`. I wrote them up [here](https://github.com/rtfeldman/elm-json-experiment#background). (Briefly: reordering fields in `type alias` can break its decoders' implementations, its unusual types are...
[`elm-analyse`](https://github.com/stil4m/elm-analyse) gives a warning for this situation: > If you concatenate two lists, but the [left hand side is a single element list literal], then you should use the cons...
I noticed in the code for package.elm-lang.org that @evancz wrote [a case-expression](https://github.com/elm/package.elm-lang.org/blob/6d817cde29ddc94271d4b1b9614aa55895c5027c/src/frontend/Main.elm#L176-L180) where each branch is a single line: ```elm case model.page of NotFound session -> session Search m ->...
Added note for Linux users, and an extra note for nixOS users.
There's currently no way to write this: ```elm case [ maybeFoo, maybeBar, maybeBaz ] of [ Just foo , Just bar , Just baz ] -> ``` The list pattern...
If a list, record, tuple, or module/import/exposing literal has an extraneous `,` at the beginning or end, it'll be a syntax error. Removing it will fix that syntax error. Suppose...