lein-figwheel

shaun-mahood 2016-07-22T17:24:57.000097Z

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

polymeris 2016-07-22T22:06:25.000100Z

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

polymeris 2016-07-22T22:36:35.000101Z

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