hey everyone. I scaffolded a cljs project with leiningen, and I want to use the repl. However, lein repl
seems to only be able to look for regular clojure java files.
I'm wondering if it is possible to add figwheel to any cljs project so that I can use a cljs repl.
@derpocious if you make sure that you add proper configuration manually everything should work. However, you need to run proper cljs-repl.
Most often I do that like this (although I don't use lein repl
manually but with cider-jack-in
):
(use 'figwheel-sidecard.repl-api)
(start-figwheel!)
(cljs-repl)
Interesting, but where are you running that clojure code?
inside the regular clojure repl
btw. why don't you just run lein figwheel
?