Fork me on GitHub
#cljsrn
<
2016-08-06
>
nilrecurring09:08:05

@pesterhazy: Zuk Z1. As powerful as the OnePlus One (which for me still runs awesome after two years), but costs 200€

nilrecurring09:08:36

A friend has it, I'll buy it soon, for testing as well

nilrecurring09:08:00

Also, the battery is a juicy 4100mAh parrot people says that lasts three days...

tiensonqin09:08:45

@pesterhazy: Do you have time for reviewing my post about react native and clojurescript?

tiensonqin09:08:58

or anyone who are interested in?

pesterhazy10:08:45

Sure, I'd be happy to

tianshu14:08:37

I thought the react-native will find the entry js index.ios.js and index.android.js. then compile and serve these with the package server. Is it easy to rewrite the package server to combine the cljs compiler?

pesterhazy17:08:53

@doglooksgood: don't quite understand the question

pesterhazy17:08:43

the cljs compiler compiles to js; this is then picked up by the RN packager server

pesterhazy17:08:43

if you have require("foo.core") in index.ios.js, it'll pick up the file compiled to "foo.core.js" in node_modules/

artemyarulin18:08:01

I guess it will check the same folder where index,ios.js first

savelichalex18:08:58

No, they check node_modules first and try to find package with name foo.core. To check the same folder you need write ./foo.core

pesterhazy18:08:59

I think a path not starting with "./" or "../" will always look in the node_modules folder