-
Notifications
You must be signed in to change notification settings - Fork 49
/
project.clj
28 lines (26 loc) · 1.06 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
(defproject coding "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:dependencies [[org.clojure/clojure "1.3.0"]
[noir "1.3.0-alpha7"]
[congomongo "0.1.7"]
[org.clojure/clojurescript "0.0-971"]
[monet "0.1.0-SNAPSHOT"]
[waltz "0.1.0-SNAPSHOT"]
[fetch "0.1.0-SNAPSHOT"]
[jayq "0.1.0-SNAPSHOT"]
[crate "0.1.0-SNAPSHOT"]
[ibdknox/clojail "0.5.2"]
]
:cljsbuild {:repl-listen-port 9001
:builds
[{:source-path "src",
:compiler
{:output-dir "resources/public/cljs/",
:output-to "resources/public/cljs/bootstrap.js",
:optimizations :simple,
:externs ["checkouts/jayq/resources/externs/jquery.js"
"resources/externs/codemirror.js"],
:pretty-print true}}]}
:aot [coding.server]
:uberjar-exclusions [#"cljs/.*\.class"]
:main ^{:skip-aot true} coding.server)