forked from tonsky/datascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
81 lines (74 loc) · 2.45 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
81
(defproject datascript "0.11.6"
: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" :scope "provided"]
[org.clojure/clojurescript "0.0-3308" :scope "provided"]
]
:global-vars {
*warn-on-reflection* true
;; *unchecked-math* :warn-on-boxed
}
:jvm-opts ["-Xmx2g" "-server"]
:aliases {"test-clj" ["run" "-m" "datascript.test/test-most"]
"test-clj-all" ["run" "-m" "datascript.test/test-all"]
"node-repl" ["run" "-m" "user/node-repl"]
"browser-repl" ["run" "-m" "user/browser-repl"]}
:cljsbuild {
:builds [
{ :id "release"
:source-paths ["src" "bench/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 {
:source-paths ["bench/src" "test" "dev"]
:plugins [
[lein-cljsbuild "1.0.6"]
]
:cljsbuild {
:builds [
{ :id "advanced"
:source-paths ["src" "bench/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" "bench/src" "test" "dev"]
: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
}}
]
}
}
}
:clean-targets ^{:protect false} [
"target"
"release-js/datascript.bare.js"
"release-js/datascript.js"
]
)