Nice shoutout to figwheel in David Nolen's talk at Curry On https://youtu.be/JlgVSt-WWkA
Hi. As I posted in beginners, I have an issue with loading foreign-libs into the figwheel REPL. I have this in my dev cljs build:
:foreign-libs [{:file "resources/browserified/foo.js"
:provides ["js.foo"]}
And in my cljs file I have (:require [js.foo])
. The cljsbuild works, I get access to the stuff in foo.js from the browser, but when I try to load the cljs file into the figwheel REPL I get:
java.lang.IllegalArgumentException: Namespace js.foo does not exist
uhm... while I don't have a solution, it does not seem to matter. Just noticed the namespace still gets loaded, Exception or not