This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-01
Channels
- # bangalore-clj (1)
- # beginners (16)
- # bigdata (1)
- # boot (16)
- # cljs-dev (79)
- # cljsjs (37)
- # cljsrn (62)
- # clojars (1)
- # clojure (260)
- # clojure-austin (3)
- # clojure-dev (3)
- # clojure-dusseldorf (3)
- # clojure-italy (1)
- # clojure-russia (32)
- # clojure-serbia (2)
- # clojure-spec (8)
- # clojure-uk (146)
- # clojure-ukraine (16)
- # clojurescript (66)
- # cursive (27)
- # datomic (57)
- # dirac (124)
- # emacs (10)
- # hoplon (12)
- # juxt (6)
- # keechma (6)
- # lein-figwheel (18)
- # leiningen (6)
- # lumo (51)
- # off-topic (1)
- # om (66)
- # onyx (41)
- # perun (1)
- # play-clj (1)
- # protorepl (9)
- # re-frame (20)
- # reagent (11)
- # ring (4)
- # ring-swagger (10)
- # rum (22)
- # specter (8)
- # sql (2)
- # test-check (5)
- # untangled (27)
- # yada (29)
@shaun-mahood I have confirmed that it is the figwheel process (java.exe) that is hanging on to these files using process explorer
occasionally i cause a client-side error that appears to prevent fighweel from reloading. anyone else experienced this, or tried to detect errors? solution is usually to fix the problem and hard refresh. would be awesome if figwheel could detect this and tell the user to reload
anyone have suggestions for debugging a slow reload? CSS is pretty instant, cljs changes take 5-6 seconds
@jdkealy how many files get reloaded for cljs changes? maybe someone went nuts with ^:figwheel-always
@isak: Probably worth filing an issue with relevant details. Is it something you want to put any time into fixing, or are you happy just knowing what's going on?
@shaun-mahood will do. And yea maybe, will have to try to get an overview of the code
hm then i'm not sure, I had the same problem before, but then it was because of that. https://github.com/bhauman/lein-figwheel/issues/88
so, has anyone encountered anything like the following? I suspect I’m misconfigured somehow.
When I access my app the first time it works and reloading works as well. However, after triggering a hot reload, and then refreshing the page (F5), figwheel’s websocket connection disappears, and I also get the error goog.require could not find: figwheel.connect.build1
and I start figwheel with (figwheel-sidecar.repl-api/start-figwheel! "login" “build1" “imageviewer”)
the problem goes away if I just build one of the targets with (figwheel-sidecar.repl-api/start-figwheel!)
just figured it out. sharing output-dir
across builds appears to work at first, but puts things in an inconsistent state (as you might expect!)
https://github.com/bhauman/lein-figwheel/issues/453