This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-12
Channels
- # beginners (47)
- # boot (5)
- # bristol-clojurians (1)
- # cider (45)
- # clara (2)
- # cljs-dev (11)
- # cljsrn (47)
- # clojure (169)
- # clojure-brasil (2)
- # clojure-dusseldorf (22)
- # clojure-finland (1)
- # clojure-italy (9)
- # clojure-nl (3)
- # clojure-poland (2)
- # clojure-russia (4)
- # clojure-spec (79)
- # clojure-uk (105)
- # clojurescript (59)
- # core-async (41)
- # cursive (31)
- # datomic (10)
- # devcards (1)
- # duct (6)
- # editors (9)
- # emacs (12)
- # figwheel (1)
- # fulcro (50)
- # java (4)
- # mount (1)
- # off-topic (47)
- # onyx (33)
- # pedestal (1)
- # protorepl (1)
- # re-frame (32)
- # reagent (45)
- # ring-swagger (6)
- # shadow-cljs (100)
- # tools-deps (6)
- # uncomplicate (27)
- # vim (3)
Hi, I'm able to compile my app using lein cljsbuild once dev
, but when I try to compile it using figwheel, it seems to choke on a .clj file I made for macros I'm using:
Failed to compile build :dev from ["src/cljs"] in 9.102 seconds.
---- Could not Analyze src/cljs/ewan/views.cljs ----
Could not locate ewan/spec/eaf30__init.class or ewan/spec/eaf30.clj on classpath.
Any suggestions? I have this in my project.clj but I feel like :reload-clj-files
shouldn't be relevant here...
:figwheel {:reload-clj-files {:clj true :cljc true}}
edit: I had a silly error in views.cljs
where I was still requiring a dependency I'd taken out of my project.clj
. After I removed that and did a full clean things started working again. I wish the error message had been more helpful, though