reagent/examples/geometry/project.clj

29 lines
1.0 KiB
Clojure
Raw Normal View History

2014-02-09 10:04:13 +00:00
2014-12-10 11:39:30 +00:00
(defproject geometry-reagent "0.5.0-alpha"
2014-12-10 11:51:14 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2342"]
2014-12-10 11:39:30 +00:00
[reagent "0.5.0-alpha"]]
2014-12-10 11:51:14 +00:00
:plugins [[lein-cljsbuild "1.0.3"]]
2014-02-09 10:04:13 +00:00
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild
{:builds
{:client {:compiler
{:optimizations :advanced
:preamble ^:replace ["reagent/react.min.js"]
:pretty-print false}}}}}
:srcmap {:cljsbuild
{:builds
{:client {:compiler
{:source-map "target/client.js.map"
:source-map-path "client"}}}}}}
:source-paths ["src"]
:cljsbuild
{:builds
{:client {:source-paths ["src"]
:compiler
{:preamble ["reagent/react.js"]
:output-dir "target/client"
:output-to "target/client.js"
:pretty-print true}}}})