-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
36 lines (29 loc) · 1.42 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
(defproject om-async "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"}
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.28"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.omcljs/om "0.9.0"]
[ring "1.4.0"]
[compojure "1.4.0"]
[com.datomic/datomic-free "0.9.5198" :exclusions [joda-time]]]
:plugins [[lein-cljsbuild "1.0.6"]
[lein-figwheel "0.3.5"]]
:source-paths ["src/clj" "src/cljs"]
:resource-paths ["resources"]
:clean-targets ^{:protect false} ["resources/public/js/out"
"resources/public/js/main.js"]
:figwheel {:ring-handler om-async.core/handler}
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/clj" "src/cljs"]
:figwheel true
:compiler {:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out"
:main om-async.core
:asset-path "js/out"
:optimizations :none
:source-map true}}]})