reagent/examples/simple/project.clj

27 lines
948 B
Clojure
Raw Normal View History

2013-12-16 23:19:36 +01:00
2013-12-17 22:25:11 +01:00
(defproject simple-cloact "0.0.3-SNAPSHOT"
2013-12-17 15:29:02 +01:00
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2120"]
2013-12-17 22:25:11 +01:00
[cloact "0.0.3-SNAPSHOT"]]
2013-12-17 15:29:02 +01:00
:plugins [[lein-cljsbuild "1.0.1"]]
2013-12-16 23:19:36 +01:00
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild
{:builds
{:client {:compiler
{:optimizations :advanced
: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
{:output-dir "target/client"
:output-to "target/client.js"
:pretty-print true}}}})