-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
30 lines (26 loc) · 1.33 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
(defproject clblocks "0.1.0-SNAPSHOT"
:main clblocks.runner
:description "Falling blocks game in ClojureScript"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.319.0-6b1aca-alpha"]
[org.clojure/clojurescript "0.0-2307"]
[om "0.7.1"]]
:repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"}
:plugins [[lein-cljsbuild "1.0.3"]]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {:output-to "web/clblocks.js"
:output-dir "web/out"
:optimizations :none
:pretty-print true
:source-map true}}
{:id "prod"
:source-paths ["src/cljs"]
:compiler {:output-to "web/clblocks.js"
:optimizations :advanced
:pretty-print false
:preamble ["react/react.min.js"]
:externs ["react/externs/react.js"]}}]})