forked from tonsky/datascript-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
42 lines (39 loc) · 924 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
31
32
33
34
35
36
37
38
39
40
41
42
(defproject datascript-todo "0.1.0"
:dependencies [
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.122"]
[datascript "0.13.0"]
[datascript-transit "0.2.0"]
[rum "0.4.0"]
]
:plugins [
[lein-cljsbuild "1.1.0"]
]
:cljsbuild {
:builds [
{ :id "advanced"
:source-paths ["src"]
:compiler {
:main datascript-todo.core
:output-to "target/todo.js"
:optimizations :advanced
:pretty-print false
}}
]}
:profiles {
:dev {
:cljsbuild {
:builds [
{ :id "none"
:source-paths ["src"]
:compiler {
:main datascript-todo.core
:output-to "target/todo.js"
:output-dir "target/none"
:optimizations :none
:source-map true
}}
]}
}
}
)