reagent/examples/simple/project.clj

33 lines
1.2 KiB
Clojure
Raw Normal View History

2013-12-16 22:19:36 +00:00
2015-03-11 18:06:46 +00:00
(defproject simple-reagent "0.5.0"
2014-12-10 11:51:14 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2816"]
2015-03-11 18:06:46 +00:00
[reagent "0.5.0"]
2015-02-09 08:43:43 +00:00
[figwheel "0.2.3-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.0.4"]
[lein-figwheel "0.2.3-SNAPSHOT"]]
2013-12-16 22:19:36 +00:00
:hooks [leiningen.cljsbuild]
2015-02-09 08:43:43 +00:00
:profiles {:dev {:cljsbuild
{:builds {:client {:source-paths ["devsrc"]
:compiler
{:main simpleexample.dev
2015-02-09 08:43:43 +00:00
:optimizations :none
:source-map true
:source-map-timestamp true}}}}}
:prod {:cljsbuild
{:builds {:client {:compiler
{:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
:figwheel {:repl false}
:cljsbuild {:builds {:client {:source-paths ["src"]
:compiler
{:output-dir "target/client"
:output-to "target/client.js"}}}})