Richard Feldman
Richard Feldman
Now that we've used this library quite a bit, I think I made a mistake putting functions returning an `Expectation` in the `Query` module. I think they should go in...
Currently: ``` ▼ Query.index 1 0 matches found for this query. ✗ Query.index 1 always expects to find 1 element, but it found 0 instead. ``` Better: ``` ▼ Query.index...
See https://github.com/eeue56/elm-html-test/issues/50 for motivation. Any objections to removing `Query.contains` from the API?
@avh4 [proposed](https://github.com/eeue56/elm-html-test/issues/32#issuecomment-306840487): > some way to write a query that will find the button when given `a`, and the input when given `b`: ```elm a = div [] [ button...
Needs minimization, but the crash here is because the `next` function is destructuring its first argument with `@Task` when it should be `@SimTask` instead. `roc check` on this hello world...
The Roc CLI should have a `roc init` for starting a new project. Usage would vary based on whether you're initializing a platform or an application. For an application, you...
@joeybright came up with some beautiful designs for the generated docs, which are responsive and include dark mode! These can be implemented via changes to the [styles.css](https://github.com/rtfeldman/roc/blob/0c65aac757ab6973c703fb66473d69c07f7960ab/docs/src/static/styles.css) and [index.html](https://github.com/rtfeldman/roc/blob/0c65aac757ab6973c703fb66473d69c07f7960ab/docs/src/static/index.html) files...
To reproduce, edit `examples/hello-world/Hello.roc` to include this doc comment: ``` app "hello-world" packages { pf: "platform" } imports [] provides [ main ] to pf ## Greets the user ##...
Currently if I specify an extra record field, the most directly helpful piece of information (too many fields) is left until a tip at the end. For example: ``` ──...
`roc check` and `roc build` both succeed, but running it segfaults. Repro: https://gist.github.com/travisstaloch/7add1274a085f1e6cba59ca93d991d9c Discussion: https://roc.zulipchat.com/#narrow/stream/231634-beginners/topic/json.20parser/near/302777765