Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #126

Merged
merged 1 commit into from
Jul 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
provide the dependencies yourself like this:

#+BEGIN_SRC clojure :exports code :results silent
[cljsjs/react "15.1.0-0"]
[cljsjs/react-dom "15.1.0-0"]
[cljsjs/react "15.2.1-0"]
[cljsjs/react-dom "15.2.1-0"]
#+END_SRC

If you want to do server rendering and use the =render= or
=render-static= functions from the =sablono.server= namespace you
need to add the following dependency as well:

#+BEGIN_SRC clojure :exports code :results silent
[cljsjs/react-dom-server "15.1.0-0"]
[cljsjs/react-dom-server "15.2.1-0"]
#+END_SRC

** Usage
Expand Down
14 changes: 7 additions & 7 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
[crate "0.2.5"]
[criterium "0.4.4"]
[devcards "0.2.1-7" :exclusions [sablono]]
[doo "0.1.6"]
[figwheel-sidecar "0.5.4-5"]
[doo "0.1.7"]
[figwheel-sidecar "0.5.4-7"]
[hickory "0.6.0"]
[reagent "0.6.0-alpha2"]
[rum "0.10.4"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]
[lein-figwheel "0.5.4-5"]]
[lein-doo "0.1.7"]
[lein-figwheel "0.5.4-7"]]
:resource-paths ["test-resources" "target"]}
:provided {:dependencies [[cljsjs/react "15.2.0-0"]
[cljsjs/react-dom "15.2.0-0"]
[cljsjs/react-dom-server "15.2.0-0"]
:provided {:dependencies [[cljsjs/react "15.2.1-0"]
[cljsjs/react-dom "15.2.1-0"]
[cljsjs/react-dom-server "15.2.1-0"]
[org.clojure/clojurescript "1.9.93"]]}
:repl {:dependencies [[com.cemerick/piggieback "0.2.1"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}}
Expand Down