@@ -86,21 +86,21 @@ Add the following dependencies to your project (`project.clj` in Leiningen based
86
86
or ` build.boot ` in Boot project):
87
87
88
88
``` clojure
89
- [com.cemerick /piggieback " 0.2.1 " ]
89
+ [cider /piggieback " 0.3.0 " ]
90
90
[org.clojure/clojure " 1.7.0" ]
91
91
```
92
92
93
93
as well as ` piggieback ` nREPL middleware:
94
94
95
95
in ` project.clj ` :
96
96
``` clojure
97
- :repl-options {:nrepl-middleware [cemerick .piggieback/wrap-cljs-repl]}
97
+ :repl-options {:nrepl-middleware [cider .piggieback/wrap-cljs-repl]}
98
98
```
99
99
100
100
or in ` build.boot ` :
101
101
``` clojure
102
102
(task-options!
103
- repl {:middleware '[cemerick .piggieback/wrap-cljs-repl]})
103
+ repl {:middleware '[cider .piggieback/wrap-cljs-repl]})
104
104
```
105
105
106
106
There are many ClojureScript REPLs out there and it's often hard to wrap your
@@ -150,7 +150,7 @@ documentation lookup, the namespace browser, and macroexpansion).
150
150
[adzerk/boot-cljs-repl " X.Y.Z" :scope " test" ]
151
151
[pandeiro/boot-http " X.Y.Z" :scope " test" ]
152
152
[weasel " 0.7.0" :scope " test" ]
153
- [com.cemerick /piggieback " 0.2.1 " :scope " test" ]
153
+ [cider /piggieback " 0.3.0 " :scope " test" ]
154
154
```
155
155
156
156
and this at the end of ` build.boot ` :
@@ -187,14 +187,14 @@ You can also use [Figwheel](https://github.com/bhauman/lein-figwheel) with CIDER
187
187
2 . Add these to your dev ` :dependencies ` :
188
188
189
189
``` clojure
190
- [com.cemerick /piggieback " 0.2.1 " ]
190
+ [cider /piggieback " 0.3.0 " ]
191
191
[figwheel-sidecar " 0.5.0-2" ]
192
192
```
193
193
194
194
3 . Add this to your dev ` :repl-options ` :
195
195
196
196
``` clojure
197
- :nrepl-middleware [cemerick .piggieback/wrap-cljs-repl]
197
+ :nrepl-middleware [cider .piggieback/wrap-cljs-repl]
198
198
```
199
199
200
200
4 . Start the REPL with ` cider-jack-in-clojurescript ` (<kbd >C-c M-J</kbd >)
0 commit comments