Fork me on GitHub
#lein-figwheel
<
2016-07-22
>
shaun-mahood17:07:57

Nice shoutout to figwheel in David Nolen's talk at Curry On https://youtu.be/JlgVSt-WWkA

polymeris22:07:25

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

polymeris22:07:35

uhm... while I don't have a solution, it does not seem to matter. Just noticed the namespace still gets loaded, Exception or not