-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.clj
30 lines (23 loc) · 1.18 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
(defproject datascript-mori "0.18.0"
:description "Wrapper for datascript interplay mori"
:url "https://github.com/typeetfunc/datascript-mori"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.5.3"
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.520" :scope "provided"]
[datascript "0.18.8"]
[datascript-transit "0.3.0"]]
:plugins [[lein-cljsbuild "1.1.7" :exclusions [[org.clojure/clojure]]]
[lein-git-deps "0.0.2-SNAPSHOT"]]
:git-dependencies [["https://github.com/swannodette/mori.git"]]
:source-paths ["src" ".lein-git-deps/mori/src"]
:clean-targets ^{:protect false} ["target"]
:cljsbuild {:builds
[{:id "min"
:source-paths ["src" ".lein-git-deps/mori/src"]
:compiler {:output-to "release-js/datascript-mori.bare.js"
:main datascript-mori.core
:optimizations :advanced
:pretty-print false}
:notify-command ["release-js/wrap_bare.sh"]}]})