reagent/examples/todomvc/project.clj

32 lines
1.2 KiB
Clojure
Raw Normal View History

2015-02-09 18:09:20 +00:00
(defproject todomvc-reagent "0.5.0-alpha3"
2014-12-10 11:51:14 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
2015-02-09 11:25:12 +00:00
[org.clojure/clojurescript "0.0-2760"]
2015-02-09 18:09:20 +00:00
[reagent "0.5.0-alpha3"]
2015-02-09 11:25:12 +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 11:25:12 +00:00
:profiles {:dev {:cljsbuild
{:builds {:client {:source-paths ["devsrc"]
:compiler
{:main devsetup
: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"}}}})