forked from tonsky/datascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (40 loc) · 1.17 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
(defproject datascript "0.1.3"
: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.6.0"]
[org.clojure/clojurescript "0.0-2173"] ;; 0.0-2202
]
:profiles {
:dev {
:plugins [
[lein-cljsbuild "1.0.2"] ;; 1.0.3
[com.cemerick/clojurescript.test "0.3.0"]
]
:cljsbuild {
:builds [
{ :id "dev"
:source-paths ["src" "test"]
:compiler {
:output-to "web/datascript.js"
:output-dir "web/out"
:optimizations :none
:source-map true
}}
{ :id "testable"
:source-paths ["src" "test"]
:compiler {
:output-to "web/datascript.testable.js"
:optimizations :whitespace
}}
]
:test-commands {
"unit-tests" [
"phantomjs" :runner
"web/datascript.testable.js"
]}
}
}
})