ah right, yeah one second
fixed in Krell master
Hi everyone! I try to get the krell tutorial example to work on my windows machine. After krell connects to the android emulator and the repl prompt apears, the repl throws several FileNotFoundExceptions for the .js files. All the files exist in the target folder. Is there an obvious problem I don't see?
I’m not saying that I’ll be able to fix the issue that you’re having @martin_jung but maybe share the error you’re getting in a gist? It’ll give people more to go on when troubleshooting.
@martin_jung I don't have a Windows machine - and there are known Windows issues
specifically around path handling
feel free to open an issue, I'll look into it - if you have some thoughts about fixes to let me know
our team doesn't use Windows so not a high priority for us
basically the issue is that Google Closure Library paths are relative URLs and we can just use those on OS X / Linux
on Windows they need to be translated
Thanks for the explanation David. At least I now know that it's not a configuration issue. So I can stop messing around with that. If I manage to look at the implementation I'll let you know.
Hey, does anyone has experience with a cljs build tool that works with expo. Or is it a no mans land? My current attempt is to use react-native-figwheel-bridge on top of a blank expo project. But I am stuck at the JS land border trying to make sense of the import / export. https://github.com/bhauman/react-native-figwheel-bridge
@emilien see this: https://shadow-cljs.github.io/docs/UsersGuide.html#_expo
Sorry, didn’t read that properly enough, my bad.
@dotemacs thanks I didn't have this resource. It may help me understand what I'm doing.
What I mean to say is: I know that shadow-cljs can be used to build for expo. Not sure how you’d do it via react-native-figwheel-bridge.
I first tried with react-native-figwheel-bridge because it is the best description of the problem I found in the README. But any tool that works would do 🙂
@martin_jung https://github.com/vouch-opensource/krell/issues/91, will take a look next week - likely not that hard but might need some help testing
@emilien You can use Shadow-CLJS, it works great with Expo. Here an simple example repo from the Shadow author : https://github.com/thheller/reagent-expo
Another repo with Re-frame : https://github.com/PEZ/rn-rf-shadow
Thanks @admin055 I forked it to update the deps: https://github.com/PEZ/rn-rf-shadow/compare/master...Em-AK:master