Antonio Nuno Monteiro
Antonio Nuno Monteiro
Oh I meant exit code for the program. I must have been in a rush when I wrote this.
Feels like this should help https://github.com/eclipse-vertx/vert.x/issues/1401
@baransu https://caml.inria.fr/pub/docs/manual-ocaml/manual027.html
Just ran into this too. solved it by nesting my mutation in the module I pass as argument to the functor like below: ```reason module type MutationType = { type...
It looks to me as though no code changes are necessary. The executable probably just needs to be compiled against OCaml 4.06. It's using OCaml-migrate-parsetree so it should just work.
I just verified my assumption that no code changes are necessary. I built the PPX with OCaml 4.06 and copied the binary to my node_modules in a project that depends...
@baransu yeah, we are always going to need 2 binaries. The best alternative I see is to do what I recently did for the ReasonReact repo (https://github.com/reasonml/reason-react/pull/392) and use 2...
Melange doesn't support dev-time PPXes right now, but it shouldn't be very hard to add it. I'll create an issue upstream and work on it soon.
Paths were done in https://github.com/andreas/ocaml-graphql-server/pull/112 Locations might be possible after #132
@andreas did you ever push your WIP branch for this? I'd love to take a look.