@bhauman FYI I was having a look at figwheel-main code to see if I could understand how to fix it myself, since I noticed
(when (or (get b-cfg ::join-server? true)
(and
(not (in-nrepl?))
(= mode :repl)))
(fww/stop!)
I tried to use (fma/start-join {:mode :build-once} :automation)
instead of start
and that actually seems to work as expected nowDoes anyone know what could be causing this? :
app:cljs.user=> (require '[re-frame.core :as re-frame])
nil
app:cljs.user=> @reframe.db/app-db
Execution error (NullPointerException) at figwheel-sidecar.cljs-utils.exception-parsing/blank-line-column-prefix (exception_parsing.clj:152).
interesting! I’ll look at that as well.
@franklineapiyo that looks like an error in figwheels exception parsing
there’s probably something in the db that is causing a print error and that in turn is causing the exception to print wrong as well
Thanks :simple_smile: , this was very helpful
as the error is also trying to print the db
update for :bundle
support is that it should be ready by the end of the week