reagent/examples/todomvc/project.clj

26 lines
884 B
Clojure
Raw Normal View History

2013-12-16 23:19:36 +01:00
2013-12-16 23:22:54 +01:00
(defproject todomvc-cloact "0.0.1"
2013-12-16 23:19:36 +01:00
:dependencies [[org.clojure/clojurescript "0.0-2120"]
2013-12-16 23:22:54 +01:00
[cloact "0.0.1"]]
2013-12-16 23:19:36 +01:00
:plugins [[lein-cljsbuild "1.0.0"]]
: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}}}})