This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-15
Channels
- # beginners (138)
- # bigdata (2)
- # boot (45)
- # cljsrn (29)
- # clojure (108)
- # clojure-austin (1)
- # clojure-gamedev (1)
- # clojure-korea (9)
- # clojure-russia (50)
- # clojure-spec (2)
- # clojure-uk (28)
- # clojurescript (40)
- # component (1)
- # cursive (35)
- # datomic (39)
- # dirac (16)
- # emacs (22)
- # flambo (11)
- # funcool (6)
- # hoplon (74)
- # leiningen (4)
- # off-topic (1)
- # om-next (2)
- # onyx (141)
- # planck (7)
- # proton (10)
- # protorepl (4)
- # re-frame (21)
- # reagent (13)
- # remote-jobs (1)
- # ring (3)
- # specter (9)
- # sql (3)
- # test-check (14)
- # untangled (1)
- # vim (9)
- # yada (16)
I think I solved it by adding a .babelrc
-file to my root and ignoring the build folder 😄
Might add it to the example project of boot react native if it is requested: https://github.com/mjmeintjes/boot-react-native/issues/76
@vikeri So did you disable babel completely? What about NPM libs that still requires babel?
@artemyarulin Nope, babel still does its thing, it just doesn’t transpile anything in the folder where my cljs->js output is.
Mind share what you have in .babelrc
so I save a minute from googling that? 🙂
I remember I was playing with that but didn’t notice any speed difference in my case
thanks!
Hi all, just getting started with react native and clojurescript. I followed along here http://presumably.de/boot-react-native.html and it works great, very cool stuff.
Just curious - has anyone tried boot-react-native with react-native-desktop?
@upgradingdave great to heat BRN works for you!
I haven't tried that yet but would be very curious as to whether it works
yeah, great stuff, thanks so much for putting the boot-react-native together!
I’m trying it out right actually. I created a new xcode project files using react-native-macos init MyProject
and then moved that under boot-react-native/example/apps ...
yeah that's what I would have done as well
I think it’s close, but just realized that react-native-macos
uses a react-native-macos node module. So I’m not sure whether the 2 node modules (react-native-macos, and react-native) will conflict? But hopefully not
and also I think I need to patch the react-native-macos, just like you patched react-native for the goog require stuff, so trying that now
maybe you just need to replace on withe the other
yeah patching would still be required
ok, cool, thanks, will let you know how it goes
Hi @pesterhazy, good news: It works with react-native-macos!
still very rough around the edges, but I posted the code I have so far here: https://github.com/upgradingdave/boot-react-native/tree/macos
The way I have it set up breaks the ios build, unfortunately, but it might be possible to run them both side, by side, I’ll keep at it as I have time
but I think it's really cool that it’s working to build a mac osx desktop app. I’m going to try and build a more complicated macos app over the next couple weeks to learn more about how everything works together
nice!!
well done @upgradingdave