Skip to content

Commit 0affa7d

Browse files
committed
Update ClojureScript instructions for new piggieback 0.3
1 parent 5169ceb commit 0affa7d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ CIDER packs plenty of features. Here are some of them (in no particular order):
9191
[company-mode]: http://company-mode.github.io/
9292
[leiningen]: http://leiningen.org/
9393
[boot]: http://boot-clj.com/
94-
[piggieback]: https://github.com/cemerick/piggieback
94+
[piggieback]: https://github.com/clojure-emacs/piggieback
9595
[vim-fireplace]: https://github.com/tpope/vim-fireplace
9696
[CCW]: https://github.com/laurentpetit/ccw
9797
[cider-nrepl]: https://github.com/clojure-emacs/cider-nrepl

doc/up_and_running.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,21 @@ Add the following dependencies to your project (`project.clj` in Leiningen based
8686
or `build.boot` in Boot project):
8787

8888
```clojure
89-
[com.cemerick/piggieback "0.2.1"]
89+
[cider/piggieback "0.3.0"]
9090
[org.clojure/clojure "1.7.0"]
9191
```
9292

9393
as well as `piggieback` nREPL middleware:
9494

9595
in `project.clj`:
9696
```clojure
97-
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
97+
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
9898
```
9999

100100
or in `build.boot`:
101101
```clojure
102102
(task-options!
103-
repl {:middleware '[cemerick.piggieback/wrap-cljs-repl]})
103+
repl {:middleware '[cider.piggieback/wrap-cljs-repl]})
104104
```
105105

106106
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).
150150
[adzerk/boot-cljs-repl "X.Y.Z" :scope "test"]
151151
[pandeiro/boot-http "X.Y.Z" :scope "test"]
152152
[weasel "0.7.0" :scope "test"]
153-
[com.cemerick/piggieback "0.2.1" :scope "test"]
153+
[cider/piggieback "0.3.0" :scope "test"]
154154
```
155155

156156
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
187187
2. Add these to your dev `:dependencies`:
188188

189189
```clojure
190-
[com.cemerick/piggieback "0.2.1"]
190+
[cider/piggieback "0.3.0"]
191191
[figwheel-sidecar "0.5.0-2"]
192192
```
193193

194194
3. Add this to your dev `:repl-options`:
195195

196196
```clojure
197-
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]
197+
:nrepl-middleware [cider.piggieback/wrap-cljs-repl]
198198
```
199199

200200
4. Start the REPL with `cider-jack-in-clojurescript` (<kbd>C-c M-J</kbd>)

0 commit comments

Comments
 (0)