-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdeps.edn
More file actions
31 lines (28 loc) · 1.25 KB
/
deps.edn
File metadata and controls
31 lines (28 loc) · 1.25 KB
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
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}}
:aliases
{:repl
{:extra-paths ["test"]
:extra-deps {babashka/fs {:mvn/version "0.5.32"}}}
:test ;; added by neil
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}
babashka/fs {:mvn/version "0.5.32"}
io.github.borkdude/deflet {:mvn/version "0.1.0"}}
:exec-args {:cmd "bb test"}
:main-opts ["-m" "babashka.cli.exec"]
:exec-fn babashka.test-runner/test #_cognitect.test-runner.api/test}
:build ;; added by neil
{:deps {io.github.clojure/tools.build {:mvn/version "0.10.13"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:extra-paths ["." ".build"]
:ns-default build
:main-opts ["-m" "babashka.cli.exec"]}
:clj-1.10 {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
:clj-1.12 {:extra-deps {org.clojure/clojure {:mvn/version "1.12.4"}}}
:cljs-test
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
org.clojure/clojurescript {:mvn/version "1.12.134"}}
:extra-paths ["test" "cljs-test-runner-out/gen"]
:main-opts ["-m" "cljs-test-runner.main" "-d" "test"]}}}