This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-26
Channels
- # admin-announcements (70)
- # aws (1)
- # beginners (17)
- # boot (37)
- # business (1)
- # cider (2)
- # cljs-dev (56)
- # cljsrn (6)
- # clojure (151)
- # clojure-germany (1)
- # clojure-nl (5)
- # clojure-poland (5)
- # clojure-russia (34)
- # clojure-taiwan (1)
- # clojurescript (289)
- # clojurex (2)
- # cursive (16)
- # datavis (3)
- # datomic (12)
- # editors (10)
- # emacs (3)
- # hoplon (17)
- # ldnclj (5)
- # lein-figwheel (12)
- # leiningen (1)
- # liberator (1)
- # off-topic (23)
- # om (116)
- # onyx (39)
- # parinfer (44)
- # portland-or (1)
- # reagent (34)
- # yada (6)
Man I am in dire need of Emacs help. I am trying to play with my cljs file in cider using cider-jack-in
but it keeps giving me the below error when I try to compile the current file into cider.
1. Caused by java.io.FileNotFoundException
Could not locate reagent/core__init.class or reagent/core.clj on
classpath.
shell steps:
$ lein new figwheel project-name -- —reagent
$ cd project-name
$ lein figwheel
$ lein install && lein deps
Part of my project.clj
:
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.async "0.2.374"]
[reagent "0.5.0"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-1"]
[cider/cider-nrepl "0.8.1"]]
Any help would be appreciated. Bottom line is that apparently Cider can’t see that I have the reagent dependency already.
it may not be related but you might want to upgrade cider (both cider-nrepl and the emacs package) to 0.10.0-SNAPSHOT if you want to play with cljs
Thanks for the suggestion, @benedek, will do so. With any luck it will solve my problem too.
OK dumb question, how do you upgrade the cider emacs package to 0.10.0?