Dwayne Crooks
Dwayne Crooks
@sorianog If you're still looking for a tutorial, then you can check out [the one I wrote](https://github.com/dwayne/elm-todos/tree/tutorial/tutorial) for [elm-todos](https://github.com/dwayne/elm-todos).
Looks like there is already a PR that addresses this issue. See https://github.com/rconradharris/envparse/pull/15.
I ran in to this same problem: ``` term : Parser Expr term = P.oneOf [ P.succeed Number |= number , P.succeed EParam |= param ] ``` Given, ``` Parser.run...
@lyerox No you wouldn't need to deconstruct the `slist` when using `map`.
@glebmachine What does CSS modules have to do with Jade?
Okay. So do you want the template function to be called with this object (the locals) that CSS modules exports?
From my understanding, `jade-loader` will return the template function for you. That template function takes a locals object that it uses to substitute into the template when executed. Maybe try...
I just ran into this problem. Have you guys decided what to do?
A related problem. Given, ``` [fn (x) { return [x]; }][0](4)[0] ``` it fails with: ``` uknown operator: [4] 0 ``` But, ``` [fn (x) { [x] }][0](4)[0] ``` without...
@jose-mario-jr In [my implementation](https://github.com/dwayne/elm-conduit), I use Sass even though it isn’t really needed and you can also serve the application locally without any worries of it being different to what’s...