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-07-07 04:52:13 +00:00
|
|
|
[org.clojure/clojurescript "1.9.89"]
|
2016-06-11 12:21:29 +00:00
|
|
|
[reagent "0.6.0-rc"]
|
2016-07-13 14:32:36 +00:00
|
|
|
[re-frame "0.8.0-SNAPSHOT"]
|
2016-06-14 12:46:38 +00:00
|
|
|
[binaryage/devtools "0.7.0"]
|
2015-07-13 14:27:35 +00:00
|
|
|
[secretary "1.2.3"]
|
2016-07-18 09:37:25 +00:00
|
|
|
[prismatic/schema "1.1.2"]]
|
2015-02-26 01:51:59 +00:00
|
|
|
|
2016-06-14 12:46:38 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.3"]
|
2016-07-07 04:52:13 +00:00
|
|
|
[lein-figwheel "0.5.4-5"]]
|
2015-02-26 01:51:59 +00:00
|
|
|
|
|
|
|
:hooks [leiningen.cljsbuild]
|
|
|
|
|
|
|
|
:profiles {:dev {:cljsbuild
|
2015-05-12 03:17:31 +00:00
|
|
|
{:builds {:client {:source-paths ["devsrc"]
|
2016-05-29 13:22:41 +00:00
|
|
|
:compiler {:main "todomvc.dev"
|
2015-05-12 03:17:31 +00:00
|
|
|
:asset-path "js"
|
|
|
|
:optimizations :none
|
|
|
|
:source-map true
|
|
|
|
:source-map-timestamp true}}}}}
|
2015-02-26 01:51:59 +00:00
|
|
|
|
|
|
|
:prod {:cljsbuild
|
2015-05-12 03:17:31 +00:00
|
|
|
{: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-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"}}}})
|