This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-19
Channels
- # announcements (5)
- # beginners (68)
- # boot (1)
- # cider (27)
- # clara (11)
- # cljdoc (10)
- # clojure (129)
- # clojure-europe (2)
- # clojure-italy (16)
- # clojure-nl (15)
- # clojure-spec (74)
- # clojure-uk (31)
- # clojurescript (62)
- # core-async (17)
- # cursive (28)
- # datomic (22)
- # duct (29)
- # emacs (10)
- # fulcro (65)
- # hoplon (2)
- # hyperfiddle (16)
- # instaparse (3)
- # kaocha (2)
- # lein-figwheel (3)
- # leiningen (1)
- # mount (1)
- # nrepl (21)
- # off-topic (23)
- # re-frame (59)
- # reitit (18)
- # ring-swagger (2)
- # shadow-cljs (2)
- # spacemacs (16)
- # timbre (2)
- # tools-deps (22)
I’m trying out nrepl
0.4.5 with lein-master
. I notice that if my project.clj
has a :repl-options
map then the invocation of cider/piggieback
middleware crashes the start. This does not happen with current lein
. Is this a bug or just a configuration that has changed and that I can read about somewhere? My profiles.clj
looks like so:
{:repl {:plugins [[cider/cider-nrepl "0.18.0"]]
:dependencies [[nrepl "0.4.5"]
[cider/piggieback "0.3.10"]
[figwheel-sidecar "0.5.17"]]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}