This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-23
Channels
- # 100-days-of-code (2)
- # aws (1)
- # beginners (105)
- # boot (36)
- # calva (4)
- # cider (56)
- # clara (37)
- # cljdoc (16)
- # cljs-dev (19)
- # clojure (44)
- # clojure-dev (20)
- # clojure-italy (24)
- # clojure-nl (3)
- # clojure-serbia (2)
- # clojure-spec (15)
- # clojure-uk (44)
- # clojurescript (41)
- # code-reviews (3)
- # core-async (12)
- # cursive (24)
- # datomic (4)
- # emacs (1)
- # figwheel-main (10)
- # fulcro (168)
- # funcool (2)
- # hyperfiddle (15)
- # jobs (2)
- # jobs-discuss (79)
- # juxt (19)
- # lein-figwheel (1)
- # leiningen (2)
- # luminus (14)
- # mount (8)
- # nrepl (9)
- # off-topic (9)
- # other-languages (1)
- # pathom (32)
- # reitit (6)
- # ring-swagger (3)
- # shadow-cljs (10)
- # slack-help (11)
- # spacemacs (20)
- # sql (29)
- # tools-deps (28)
- # vim (29)
- # yada (4)
Just saw a small issue where the first time you run figwheel.main (or after cleaning), the app cannot find base.js
and other JS files. This doesn't seem to happen every time. Also if you Ctrl-C and restart, it works. So I suspect some race condition or other, or a problem related to the presence of the target/
folder in the class path
configuring up figwheel-main 0.2.0-snapshot so i can use the extra mains feature. I've got
{:main react-hitch.qui-tracker
:extra-main-files {:devcards {:main react-hitch.devcards-runner}}}
and I expect to be able to see this extra main at http://localhost:9500/figwheel-extra-main/devcards.html but its not working. I see no compiled out either. Am i missing something obvious?we're almost working. we aren't seeing our "test" directory showing up. only things in "src". does that ring a bell with you?
thanks for your help earlier. the answer seems to be put "test" in the :watch-dirs
vector
Oh, just saw that, sorry. No problem - it's the very least I can do! 🙂
I suspect the issue was that you didn't add "test" to your classpath.
:watch-dirs
automatically adds its folders when we forget it (besides setting the watch).
IIRC, you'll see some warnings on figwheel's logs if that's the case.