figwheel-main

figwheel-main http://figwheel.org
2020-05-12T10:13:30.232400Z

@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 now

Franklin 2020-05-12T14:37:15.233900Z

Does anyone know what could be causing this? :

Franklin 2020-05-12T14:37:19.234200Z

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).

bhauman 2020-05-12T16:50:56.234500Z

interesting! I’ll look at that as well.

bhauman 2020-05-12T16:51:13.234800Z

@franklineapiyo that looks like an error in figwheels exception parsing

bhauman 2020-05-12T16:52:05.235700Z

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

Franklin 2020-05-14T06:12:44.242Z

Thanks :simple_smile: , this was very helpful

bhauman 2020-05-12T16:52:31.236100Z

as the error is also trying to print the db

bhauman 2020-05-12T17:06:43.236700Z

update for :bundle support is that it should be ready by the end of the week