-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
52 lines (40 loc) · 1.55 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(defproject dojo "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"}
:main dojo.core
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.6"]
[jarohen/chord "0.2.2"]
[ring/ring-core "1.2.0"]
[hiccup "1.0.4"]
[org.clojure/clojurescript "0.0-2138"]
[org.clojure/tools.reader "0.8.3"]
[om "0.1.5"]]
:plugins [[lein-pdo "0.1.1"]
[lein-cljsbuild "1.0.1"]
[jarohen/lein-frodo "0.2.9"]]
:frodo/config-resource "config/dojo.edn"
:source-paths ["src/clj"]
:aliases {"dev" ["pdo" "cljsbuild" "auto" "dev," "frodo"]
"prod" ["pdo" "cljsbuild" "once" "release," "frodo"]}
:resource-paths ["resources" "target/resources"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {
:output-to "target/resources/js/dojo.js"
:output-dir "target/resources/out"
:optimizations :none
:source-map true}}
{:id "release"
:source-paths ["src/cljs"]
:compiler {
:output-to "target/resources/js/dojo.js"
:optimizations :advanced
:pretty-print false
:preamble ["react/react.min.js"]
:externs ["react/externs/react.js"]}}
]}
)