Skip to content

Commit

Permalink
Added dependency to reagent and re-frame in project.clj
Browse files Browse the repository at this point in the history
  • Loading branch information
drapanjanas committed Nov 20, 2015
1 parent eb07073 commit 379e79a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions resources/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.145"]
[$REACT_INTERFACE$]
[reagent "0.5.1" :exclusions [cljsjs/react]]
[org.omcljs/ambly "0.6.0"]
]
[re-frame "0.5.0"]]
:plugins [[lein-cljsbuild "1.1.0"]]
:cljsbuild {:builds {:dev {:source-paths ["src"]
:compiler {:output-to "target/out/main.js"
:output-dir "target/out"
:optimizations :none}}}})
:cljsbuild {:builds {:dev {:source-paths ["src" "src-ios"]
:compiler {:output-to "target/out/main.js"
:output-dir "target/out"
:optimizations :none}}
:android {:source-paths ["src" "src-android"]
:compiler {:output-to "native/index.android.js"
:output-dir "target/android"
:optimizations :simple}}}})

0 comments on commit 379e79a

Please sign in to comment.