-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (23 loc) · 993 Bytes
/
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
(defproject arimaa "0.1.0-SNAPSHOT"
:description "Arimaa website"
:url "http://arimaa.club"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2727"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[com.andrewmcveigh/cljs-time "0.2.4"]
[reagent "0.4.3"]
[cljs-http "0.1.24"]]
:plugins [[lein-cljsbuild "1.0.3"]]
:cljsbuild
{:builds
{:dev {:source-paths ["src"]
:compiler {:output-to "site/js/cljs.js"
:output-dir "site/js"
:optimizations :none
:pretty-print true
:source-map "site/js/cljs.js.map"}}
:prod {:source-paths ["src"]
:compiler {:output-to "production/js/cljs.js"
:output-dir "production/js"
:optimizations :advanced
:pretty-print false}}}})