re-frame/examples/todomvc/project.clj

30 lines
1.2 KiB
Clojure
Raw Normal View History

(defproject todomvc-re-frame "0.3.1"
2015-02-26 01:51:59 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
2015-04-17 13:49:31 +00:00
[org.clojure/clojurescript "0.0-3208"]
2015-03-13 12:30:39 +00:00
[reagent "0.5.0"]
2015-04-17 13:49:31 +00:00
[re-frame "0.4.0.SNAPSHOT"]
2015-03-06 04:30:31 +00:00
[secretary "1.2.1"]]
2015-02-26 01:51:59 +00:00
2015-03-06 13:39:09 +00:00
:plugins [[lein-cljsbuild "1.0.4"]]
2015-02-26 01:51:59 +00:00
:hooks [leiningen.cljsbuild]
:profiles {:dev {:cljsbuild
2015-03-06 13:39:09 +00:00
{:builds {:client {
2015-02-26 01:51:59 +00:00
:compiler
2015-03-06 13:39:09 +00:00
{:main todomvc.core
2015-02-26 01:51:59 +00:00
:optimizations :none
:source-map true
:source-map-timestamp true}}}}}
:prod {:cljsbuild
{:builds {:client {:compiler
{:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
:cljsbuild {:builds {:client {:source-paths ["src"]
:compiler
{:output-dir "target/client"
:output-to "target/client.js"}}}})