re-frame/examples/simple/project.clj

34 lines
1.3 KiB
Clojure
Raw Normal View History

2015-02-25 01:31:11 +00:00
2015-04-21 14:18:31 +00:00
(defproject simple-re-frame "0.3.2"
2015-02-25 01:31:11 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
2015-04-17 13:49:31 +00:00
[org.clojure/clojurescript "0.0-3208"]
2015-04-17 12:22:43 +00:00
[reagent "0.5.0"]
2015-04-21 14:18:31 +00:00
[re-frame "0.3.2"]
[figwheel "0.2.6"]]
2015-02-25 01:31:11 +00:00
2015-04-21 14:18:31 +00:00
:plugins [[lein-cljsbuild "1.0.5"]
2015-02-25 01:31:11 +00:00
[lein-figwheel "0.2.3-SNAPSHOT"]]
:hooks [leiningen.cljsbuild]
:profiles {:dev {:cljsbuild
{:builds {:client {:source-paths ["devsrc"]
:compiler
{:main simpleexample.dev
:optimizations :none
:source-map true
:source-map-timestamp true}}}}}
:prod {:cljsbuild
{:builds {:client {:compiler
{:optimizations :advanced
:elide-asserts true
:pretty-print false}}}}}}
:figwheel {:repl false}
:cljsbuild {:builds {:client {:source-paths ["src"]
:compiler
{:output-dir "target/client"
:output-to "target/client.js"}}}})