-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.clj
More file actions
31 lines (25 loc) · 985 Bytes
/
project.clj
File metadata and controls
31 lines (25 loc) · 985 Bytes
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
(defproject datascript-transit "0.3.0"
:description "Transit handlers for DataScript database and datoms"
:license { :name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html" }
:url "https://github.com/tonsky/datascript-transit"
:dependencies
[ [org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.516" :scope "provided"]
[datascript "0.18.1"]
[com.cognitect/transit-clj "0.8.313"]
[com.cognitect/transit-cljs "0.8.256"] ]
:global-vars
{ *warn-on-reflection* true }
:plugins [ [lein-cljsbuild "1.1.7"] ]
:cljsbuild
{ :builds
[{ :id "advanced"
:source-paths ["src" "test"]
:compiler
{ :main datascript.test.transit
:output-to "target/main.js"
:optimizations :advanced
:source-map "target/main.js.map"
:pretty-print true
:compiler-stats true }}]})