-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
65 lines (61 loc) · 4.86 KB
/
deps.edn
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{:paths ["src"]
:deps {cljc.java-time/cljc.java-time {:mvn/version "0.1.18"
;:git/url "https://github.com/henryw374/cljc.java-time.git"
;:sha "5837778b307870c1ff0715fab692211dec253a6f"
}
cljsjs/js-joda-timezone {:mvn/version "2.2.0-0"}
cljsjs/js-joda-locale-en-us {:mvn/version "3.1.1-1"}
time-literals/time-literals {:mvn/version "0.1.5"
:exclusions [cljs.java-time/cljs.java-time]}}
:aliases
{:nyc {:jvm-opts ["-Duser.timezone=America/New_York"]}
:minus-four {:jvm-opts ["-Duser.timezone=\"GMT-04:00\""]}
:release {:extra-deps {applied-science/deps-library {:mvn/version "RELEASE"}}
:main-opts ["-m" "applied-science.deps-library"]}
:bb {:extra-deps {tubular/tubular {:mvn/version "1.3.0"}}
:extra-paths ["dev" "test"]}
:dev {:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
cider/piggieback {:mvn/version "0.4.0"}
com.bhauman/cljs-test-display {:mvn/version "0.1.1"}
org.clojure/clojurescript {;:mvn/version "1.10.844"
:git/url "https://github.com/clojure/clojurescript.git"
:sha "76ac6bf41300f821f052d03537edf7e86694fc6d"
}
org.clojure/data.xml {:mvn/version "0.2.0-alpha5"}
org.clojure/tools.namespace {:mvn/version "0.2.11"}
org.apache.xmlgraphics/batik-swing {:mvn/version "1.9"}
io.aviso/pretty {:mvn/version "0.1.34"}
spyscope/spyscope {:mvn/version "0.1.6"}
fipp/fipp {:mvn/version "0.6.12"}}
:extra-paths ["dev/src" "test"]
:jvm-opts ["-Dclojure.spec.compile-asserts=true"]}
:test-clj {:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.732"}
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"}}
:extra-paths ["test"]}
:test-chrome {:extra-paths ["test" "cljs-test-runner-out/gen"]
:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0" :exclusions [org.clojure/clojurescript]}
org.clojure/clojurescript {:mvn/version "1.10.764"}}
:main-opts ["-m" "cljs-test-runner.main" "-c" "test/cljs-test-opts.edn" "-x" "chrome-headless"]}
; this is node using foreign-libs.
; although not recommended, whilst tick depends on cljsjs, this should 'just work'
:test-node {:extra-paths ["test" "cljs-test-runner-out/gen"]
:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0" :exclusions [org.clojure/clojurescript]}
org.clojure/clojurescript {:mvn/version "1.10.764"}}
:main-opts ["-m" "cljs-test-runner.main" "-x" "node"]}
:docs-watch {:jvm-opts ["-Xmx500M"]
:extra-paths ["docs/src" "docs"]
:extra-deps {reagent/reagent {:mvn/version "0.8.1"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
org.clojure/clojurescript {:mvn/version "1.10.764"}}
:main-opts ["-m" "figwheel.main" "-O" "none" "--build" "docs" "--repl" "-s"]}
:docs-release {:jvm-opts ["-Xmx500M"]
:extra-paths ["docs/src" "docs"]
:extra-deps {reagent/reagent {:mvn/version "0.8.1"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
org.clojure/clojurescript {:mvn/version "1.10.764"}}
:main-opts ["-m" "figwheel.main" "-O" "simple" "--build-once" "docs"]}
:dev-rebel {:extra-paths ["aliases/rebel"]
:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.1"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
io.aviso/pretty {:mvn/version "0.1.34"}}
:main-opts ["-m" "tick.rebel.main"]}}}