-
Notifications
You must be signed in to change notification settings - Fork 108
/
project.clj
42 lines (39 loc) · 2.23 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
(defproject aysylu/loom "1.0.3-SNAPSHOT"
:min-lein-version "2.0.0"
:description "Graph library for Clojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/data.priority-map "0.0.10"]
[tailrecursion/cljs-priority-map "1.2.1"]]
:url "https://github.com/aysylu/loom"
:test-selectors {:default (fn [m] (not (:test-check-slow m)))
:all (constantly true)
:test-check-slow :test-check-slow}
:profiles {:dev [:cljs
{:dependencies [[org.clojure/test.check "0.9.0"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.15.0"]]
:repl-options {:init (set! *print-length* 50)}}]
:cljs {:dependencies [[org.clojure/clojurescript "1.10.520"]]
:plugins [[lein-cljsbuild "1.1.3" :exclusions [org.clojure/clojure]]
[lein-doo "0.1.7"]]
:doo {:build "node-dev"}
:cljsbuild {:builds
{"node-dev"
{:source-paths ["src", "test"]
:compiler {:output-to "target/loom.js"
:optimizations :none
:pretty-print true
:target :nodejs
:main loom.test.runner}}
"node-test"
{:id "min"
:source-paths ["src", "test"]
:compiler {:output-to "target/loom.js"
:optimizations :advanced
:pretty-print false
:target :nodejs
:main loom.test.runner}}}}}}
:aliases {"test-all" ["do" "clean," "test" ":all," "cljs-test"]
"cljs-test" ["doo" "node" "node-test" "once"]
"release" ["do" "clean," "with-profile" "default" "deploy" "clojars"]})