Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
denistakeda committed Oct 24, 2019
1 parent 3aa30c2 commit 67c529e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Expand Up @@ -9,6 +9,13 @@ pom.xml.asc
/.nrepl-port
.hgignore
.hg/
.cljs_node_repl
node_modules
out
package-lock.json
resources



/examples/todomvc/pom.xml
/examples/todomvc/*jar
Expand All @@ -27,3 +34,4 @@ pom.xml.asc
/examples/todomvc/resources/public/js/
/examples/todomvc/.cljs_rhino_repl/
/examples/todomvc/figwheel_server.log
/examples/todomvc/.lein-failures
5 changes: 2 additions & 3 deletions README.md
Expand Up @@ -24,9 +24,8 @@ State management within *any* application, if treated as a secondary concern, ca

Start a re-frame project and include this dependency:

```clj
[re-posh "0.3.0"]
```
[![Clojars Project](https://clojars.org/re-posh/latest-version.svg)](https://clojars.org/re-posh)


Require `re-posh` in your app:
```clojure
Expand Down
7 changes: 4 additions & 3 deletions examples/todomvc/project.clj
Expand Up @@ -7,9 +7,10 @@
:min-lein-version "2.9.0"

:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]
[reagent "0.8.1"]
[re-posh "0.3.0"]]
[org.clojure/clojurescript "1.10.520"]
[reagent "0.9.0-rc2"]
[re-posh "0.3.1"]
[datascript "0.18.7"]]

:source-paths ["src"]

Expand Down
5 changes: 3 additions & 2 deletions project.clj
Expand Up @@ -3,7 +3,8 @@
:url "https://github.com/denistakeda/re-posh"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[datascript "0.18.7"]
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.10.520" :scope "provided"]
[datascript "0.18.7" :scope "provided"]
[re-frame "0.10.7"]
[denistakeda/posh "0.5.7"]])

0 comments on commit 67c529e

Please sign in to comment.