Kévin Combriat

Results 19 comments of Kévin Combriat

I feel a bit mixed about that one to be honest 😕 While I do agree that the external system can be confusing for newcomers (and syntactically weird and verbose)...

I don't think that's a "much wider point", this pr introduces a new syntax that i don't remember seing discussed much on the forum apart from a vague "we might...

> From my reading of the blog post it's not intended to address the entire binding issue From my reading, it does. And that's exactly why i'm concerned: the situation,...

I totally second @bobzhang 's idea here. Actually I was about to propose the same syntax with the `external` keyword 😄 To be honest I don't see any improvements using...

>before we get this kind of syntax, I'd rather just have no changes That sounds like the most reasonable thing to do to be honest 😕 Introducing the new `import`...

Hello @IwanKaramazow Sure 😄 `` is basically a equivalent of `map`, like `List.map`, or `Option.map`, so instead of: ```reason Some(42) |> Option.map(x => x + 1) ``` One can write...

That's huge!! Thank you @IwanKaramazow 😄

Sorry just my 2 cents, it seems the extractor works with ReScript already (https://github.com/dylanirlbeck/tailwind-ppx/blob/master/js/index.js) (v0.8.4), at least I could make it work on a pretty lage codebase recently 😕

Hey @andywhite37, we have a fully working router functor, using the Relude Parse library with a rather simple API: ``` module Routes = Router.Make({ type t = Home | Login...