Ramana Venkata

Results 26 comments of Ramana Venkata

Did you clear node_modules before you do `npm install` again?

@jordwalke I think we should add in the README to install m4 on Ubuntu and debian for running `npm install`.

Slightly tweaking @jaredly's idea. I want to land something similar to the following in #27. ``` js "targets": { // style 1 "bucklescript": { "entries": [ "./src/client.re", "./src/server.re" ] ,...

@jaredly Can you elaborate on why it's confusing? I am not clearly able to see it.

Oh you want some part of code to be compiled by one compiler and other part by another compiler?

@jaredly Everything is flat for now. But in future you can do this with style 2 right: ``` js "entries": { "client/index": "./src/client", "server/index": "./src/server" } ```

@jaredly Hmm. Totally valid point. The way rebel is built works right now supporting two different compilers in the same build is either hard or not possible. Same situation with...

@bsansouci You never have to list all the files. You only need to specify the entry points and which compiler you want it to compiled by and the rest all...

@jordwalke Yeah I think this should be pretty trivial to implement. In the case where you want to add extraFileCompileArgs regardless of the backend. I think keeping it under `rebel.extaFileCompileArgs`...

@jordwalke I am busy for a couple of days. If nobody writes repro case by then, I will investigate it.