re-frame/examples/todomvc/project.clj

36 lines
1.5 KiB
Clojure
Raw Normal View History

2015-12-21 13:54:05 +00:00
(defproject todomvc-re-frame "0.7.0-alpha"
2015-11-02 11:37:04 +00:00
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[reagent "0.5.1"]
[re-frame "0.7.0-alpha-3"]
2015-07-13 14:27:35 +00:00
[secretary "1.2.3"]
[prismatic/schema "1.0.3"]]
2015-02-26 01:51:59 +00:00
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-2"]]
2015-02-26 01:51:59 +00:00
:hooks [leiningen.cljsbuild]
:profiles {:dev {:cljsbuild
{:builds {:client {:source-paths ["devsrc"]
:compiler {:main todomvc.dev
:asset-path "js"
:optimizations :none
:source-map true
:source-map-timestamp true}}}}}
2015-02-26 01:51:59 +00:00
:prod {:cljsbuild
{:builds {:client {:compiler {:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
:figwheel {:server-port 3450
2015-11-02 11:37:04 +00:00
:repl true}
2015-11-02 11:37:04 +00:00
:clean-targets ^{:protect false} ["resources/public/js" "target"]
2015-02-26 01:51:59 +00:00
2015-11-02 11:37:04 +00:00
:cljsbuild {:builds {:client {:source-paths ["src" "../../src"]
:compiler {:output-dir "resources/public/js"
:output-to "resources/public/js/client.js"}}}})