reagent/examples/todomvc/project.clj

30 lines
1.1 KiB
Clojure
Raw Normal View History

2016-09-14 18:51:37 +00:00
(defproject todomvc-reagent "0.6.0"
2019-02-07 18:42:06 +00:00
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.516"]
[reagent "0.8.1"]
[figwheel "0.5.18"]]
2015-02-09 11:25:12 +00:00
2019-02-07 18:42:06 +00:00
:plugins [[lein-cljsbuild "1.1.7"]
[lein-figwheel "0.5.18"]]
2015-02-09 11:25:12 +00:00
2013-12-16 22:19:36 +00:00
:hooks [leiningen.cljsbuild]
2015-02-09 11:25:12 +00:00
:profiles {:dev {:cljsbuild
2015-07-31 15:17:18 +00:00
{:builds {:client
{:figwheel {:on-jsload "todomvc.core/run"}
:compiler {:main "todomvc.core"
:optimizations :none}}}}}
2015-02-09 11:25:12 +00:00
:prod {:cljsbuild
2015-07-31 15:17:18 +00:00
{:builds {:client
{:compiler {:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
2015-02-09 11:25:12 +00:00
:figwheel {:repl false}
2015-07-31 15:17:18 +00:00
:cljsbuild {:builds {:client
{:source-paths ["src"]
:compiler {:output-dir "target/client"
:output-to "target/client.js"}}}})