2016-05-29 13:22:41 +00:00
|
|
|
(defproject todomvc-re-frame "0.8.0"
|
2016-06-14 12:46:38 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
2016-09-05 01:47:01 +00:00
|
|
|
[org.clojure/clojurescript "1.9.89"]
|
2016-06-11 12:21:29 +00:00
|
|
|
[reagent "0.6.0-rc"]
|
2016-08-21 09:50:17 +00:00
|
|
|
[re-frame "0.8.0"]
|
2016-08-19 08:20:21 +00:00
|
|
|
[binaryage/devtools "0.8.1"]
|
2016-07-19 23:39:59 +00:00
|
|
|
[secretary "1.2.3"]]
|
2015-02-26 01:51:59 +00:00
|
|
|
|
2016-09-05 01:47:01 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.4"]
|
|
|
|
[lein-figwheel "0.5.6"]]
|
2015-02-26 01:51:59 +00:00
|
|
|
|
|
|
|
:hooks [leiningen.cljsbuild]
|
|
|
|
|
2016-09-05 01:47:01 +00:00
|
|
|
:profiles {:dev {:cljsbuild
|
|
|
|
{:builds {:client {:compiler {:asset-path "js"
|
|
|
|
:optimizations :none
|
|
|
|
:source-map true
|
|
|
|
:source-map-timestamp true
|
|
|
|
:main "todomvc.core"}
|
|
|
|
:figwheel {:on-jsload "todomvc.core/main"}}}}}
|
2015-02-26 01:51:59 +00:00
|
|
|
|
|
|
|
:prod {:cljsbuild
|
2016-09-05 01:47:01 +00:00
|
|
|
{:builds {:client {:compiler {:optimizations :advanced
|
|
|
|
:elide-asserts true
|
|
|
|
:pretty-print false}}}}}}
|
2015-05-12 03:17:31 +00:00
|
|
|
|
|
|
|
:figwheel {:server-port 3450
|
2015-11-02 11:37:04 +00:00
|
|
|
:repl true}
|
2015-05-12 03:17:31 +00:00
|
|
|
|
|
|
|
|
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"]
|
2015-05-12 03:17:31 +00:00
|
|
|
:compiler {:output-dir "resources/public/js"
|
|
|
|
:output-to "resources/public/js/client.js"}}}})
|