2015-08-20 18:48:23 +00:00
|
|
|
(defproject geometry-reagent "0.5.1-rc"
|
2015-07-31 15:51:33 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
|
|
|
[org.clojure/clojurescript "0.0-3308"]
|
2015-08-20 18:48:23 +00:00
|
|
|
[reagent "0.5.1-rc"]
|
2015-07-31 15:51:33 +00:00
|
|
|
[figwheel "0.3.7"]]
|
2015-02-09 11:55:33 +00:00
|
|
|
|
2015-07-31 15:51:33 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.0.6"]
|
|
|
|
[lein-figwheel "0.3.7"]]
|
2015-02-09 11:55:33 +00:00
|
|
|
|
2014-02-09 10:04:13 +00:00
|
|
|
:hooks [leiningen.cljsbuild]
|
2015-02-09 11:55:33 +00:00
|
|
|
|
|
|
|
:profiles {:dev {:cljsbuild
|
2015-07-31 15:51:33 +00:00
|
|
|
{:builds {:client
|
|
|
|
{:figwheel {:on-jsload "geometry.core/run"}
|
|
|
|
:compiler {:main "geometry.core"
|
|
|
|
:optimizations :none}}}}}
|
2015-02-09 11:55:33 +00:00
|
|
|
|
|
|
|
:prod {:cljsbuild
|
2015-07-31 15:51:33 +00:00
|
|
|
{:builds {:client
|
|
|
|
{:compiler {:optimizations :advanced
|
|
|
|
:elide-asserts true
|
|
|
|
:pretty-print false}}}}}}
|
2015-02-09 11:55:33 +00:00
|
|
|
|
|
|
|
:figwheel {:repl false}
|
|
|
|
|
2015-07-31 15:51:33 +00:00
|
|
|
:cljsbuild {:builds {:client
|
|
|
|
{:source-paths ["src"]
|
|
|
|
:compiler {:output-dir "target/client"
|
|
|
|
:output-to "target/client.js"}}}})
|