forked from tonsky/datascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
80 lines (74 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(defproject datascript "0.10.0"
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
:license {:name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/tonsky/datascript"
:dependencies [
[org.clojure/clojure "1.7.0-beta1" :scope "provided"]
[org.clojure/clojurescript "0.0-3196" :scope "provided"]
]
:global-vars {
*warn-on-reflection* true
*unchecked-math* :warn-on-boxed
}
:jvm-opts ["-Xmx2g"]
:cljsbuild {
:builds [
{ :id "release"
:source-paths ["src"]
:assert false
:compiler {
:output-to "release-js/datascript.bare.js"
:optimizations :advanced
:pretty-print false
:elide-asserts true
:output-wrapper false
:warnings {:single-segment-namespace false}
}
:notify-command ["release-js/wrap_bare.sh"]}
]}
:profiles {
:dev {
:plugins [
[lein-cljsbuild "1.0.5"]
[com.cemerick/clojurescript.test "0.3.3"]
]
:cljsbuild {
:builds [
{ :id "advanced"
:source-paths ["src" "test"]
:compiler {
:main datascript.test
:output-to "target/datascript.js"
;; :output-dir "target/advanced"
:optimizations :advanced
:source-map "target/datascript.js.map"
:pretty-print true
:warnings {:single-segment-namespace false}
:recompile-dependents false
}}
{ :id "none"
:source-paths ["src" "test"]
:compiler {
:main datascript.test
:output-to "target/datascript.js"
:output-dir "target/none"
:optimizations :none
:source-map true
:warnings {:single-segment-namespace false}
:recompile-dependents false
}}
]
:test-commands {
"datascript.test" [ "phantomjs" :runner "target/datascript.js" ]
"datascript.test.js" [ "phantomjs" "test/js/runner.js" ]
}
}
}
}
:clean-targets ^{:protect false} [
"target"
"release-js/datascript.bare.js"
"release-js/datascript.js"
]
)