Added dependency to reagent and re-frame in project.clj
This commit is contained in:
parent
eb070739e5
commit
379e79ad9c
|
@ -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"]
|
||||
:cljsbuild {:builds {:dev {:source-paths ["src" "src-ios"]
|
||||
:compiler {:output-to "target/out/main.js"
|
||||
:output-dir "target/out"
|
||||
:optimizations :none}}}})
|
||||
:optimizations :none}}
|
||||
:android {:source-paths ["src" "src-android"]
|
||||
:compiler {:output-to "native/index.android.js"
|
||||
:output-dir "target/android"
|
||||
:optimizations :simple}}}})
|
Loading…
Reference in New Issue