summaryrefslogtreecommitdiff
path: root/doc/up_and_running.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-04-18 09:04:23 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-04-18 09:04:23 +0300
commit0affa7d37f3374a1194bb3e966c47a695ee75c24 (patch)
treead6a427fd7c8ee9227962f4e5011e7ee45f7f7f5 /doc/up_and_running.md
parent5169cebe8a8b07447f971772818dff64b9cb4caa (diff)
Update ClojureScript instructions for new piggieback 0.3
Diffstat (limited to 'doc/up_and_running.md')
-rw-r--r--doc/up_and_running.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/up_and_running.md b/doc/up_and_running.md
index ec90878f..c05dd207 100644
--- a/doc/up_and_running.md
+++ b/doc/up_and_running.md
@@ -86,7 +86,7 @@ Add the following dependencies to your project (`project.clj` in Leiningen based
or `build.boot` in Boot project):
```clojure
-[com.cemerick/piggieback "0.2.1"]
+[cider/piggieback "0.3.0"]
[org.clojure/clojure "1.7.0"]
```
@@ -94,13 +94,13 @@ as well as `piggieback` nREPL middleware:
in `project.clj`:
```clojure
-:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
+:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
```
or in `build.boot`:
```clojure
(task-options!
- repl {:middleware '[cemerick.piggieback/wrap-cljs-repl]})
+ repl {:middleware '[cider.piggieback/wrap-cljs-repl]})
```
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).
[adzerk/boot-cljs-repl "X.Y.Z" :scope "test"]
[pandeiro/boot-http "X.Y.Z" :scope "test"]
[weasel "0.7.0" :scope "test"]
-[com.cemerick/piggieback "0.2.1" :scope "test"]
+[cider/piggieback "0.3.0" :scope "test"]
```
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
2. Add these to your dev `:dependencies`:
```clojure
-[com.cemerick/piggieback "0.2.1"]
+[cider/piggieback "0.3.0"]
[figwheel-sidecar "0.5.0-2"]
```
3. Add this to your dev `:repl-options`:
```clojure
-:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]
+:nrepl-middleware [cider.piggieback/wrap-cljs-repl]
```
4. Start the REPL with `cider-jack-in-clojurescript` (<kbd>C-c M-J</kbd>)