-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (31 loc) · 1.52 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
(defproject example "0.1.0"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/tools.reader "0.8.2"]
[org.clojure/clojurescript "0.0-2371"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[om "0.8.0-alpha2"]
[com.novemberain/validateur "2.3.1"]
[racehub/om-bootstrap "0.3.1"]]
:plugins [[lein-cljsbuild "1.0.3"]
[lein-pdo "0.1.1"]]
:aliases {"up" ["pdo" "cljsbuild" "auto" "dev," "ring" "server-headless"]}
:min-lein-version "2.0.0"
:uberjar-name "example-standalone.jar"
:ring {:handler example.core/app
:init example.core/init}
:source-paths ["src/clj"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out"
:optimizations :none
:source-map "main.js.map"}}
{:id "release"
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/app.js"
:optimizations :advanced
:pretty-print false
:preamble ["react/react.min.js"]
:externs ["react/externs/react.js"]}}]})