forked from tonsky/datascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
30 lines (26 loc) · 821 Bytes
/
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 datascript-bench "0.1.0"
:dependencies [
[org.clojure/clojure "1.7.0-RC1"]
[org.clojure/clojurescript "0.0-3308"]
[datascript ~(or (System/getenv "BENCH_VERSION") "0.11.4")]
[com.datomic/datomic-free ~(or (System/getenv "DATOMIC_VERSION") "0.9.5173")
:exclusions [joda-time]]
]
:jvm-opts ["-Xmx2g" "-server"]
:plugins [[lein-cljsbuild "1.0.6"]]
:source-paths ["src" "src-datomic"]
:cljsbuild {
:builds [
{ :id "advanced"
:source-paths ["src"]
:assert false
:compiler {
:output-to "target/datascript.js"
:optimizations :advanced
:pretty-print false
:elide-asserts true
:warnings {:single-segment-namespace false}
:recompile-dependents false
}
}]}
)