nrepl

https://github.com/nrepl/nrepl || https://nrepl.org
pez 2018-11-18T20:25:53.143Z

@bozhidar, so, since Calva is not ready for 0.4.5 yet, I am trying to see what needs to be done about it. Figured using lein-master was the way to go. It complains about Warning: implicit middleware found: cider-nrepl.plugin/middleware and advices to declare it in :middleware instead. I’d like to have a project.clj that I do not need to change between current lein and lein-master, if that is possible. My current project.clj looks like so:

{:repl {:plugins [[cider/cider-nrepl "0.18.0"]]
        :dependencies [[cider/piggieback "0.3.10"]
                       [figwheel-sidecar "0.5.16"]]
        :repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}}
Any advice?