-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
34 lines (28 loc) · 1.22 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(defproject async-life "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/core.async "0.1.242.0-44b1e3-alpha"]
[org.clojure/clojurescript "0.0-1909"]
[compojure "1.1.5"]
[hiccup "1.0.3"]
[domina "1.0.2-SNAPSHOT"]
[org.clojure/data.json "0.2.2"]
]
:source-paths ["src/clj"]
:plugins [[lein-cljsbuild "0.3.2"]
[lein-ring "0.8.5"]]
:ring {:handler async-life.core/app}
:cljsbuild {:builds {:dev
{:source-paths ["src/brepl" "src/cljs"]
:compiler {:output-to "resources/public/js/dev.js"
:optimizations :whitespace
:pretty-print true}}
:prod
{:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/prod.js"
:optimizations :advanced}}
}}
)