-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdeps.edn
More file actions
42 lines (38 loc) · 1.69 KB
/
Copy pathdeps.edn
File metadata and controls
42 lines (38 loc) · 1.69 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
32
33
34
35
36
37
38
39
40
41
42
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}}
:aliases
{:repl
{:extra-paths ["test"]
:extra-deps {babashka/fs {:mvn/version "0.5.33"}}}
: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.33"}
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.14"}
io.github.babashka/deps-deploy {:mvn/version "0.0.1"}}
: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.5"}}}
:cljs-test
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.1"}
org.clojure/clojurescript {:mvn/version "1.12.145"}}
:extra-paths ["test" "cljs-test-runner-out/gen"]
:main-opts ["-m" "cljs-test-runner.main" "-d" "test"]}
:cljd
{:extra-paths ["test"]
:extra-deps {org.clojure/clojure {:mvn/version "1.11.4"}
tensegritics/clojuredart
{:git/url "https://github.com/tensegritics/ClojureDart.git"
:sha "4cdb4be7240bcb3e62c65d7fa160175c70336c3b"}
io.github.borkdude/deflet {:mvn/version "0.1.0"}}
:main-opts ["-m" "cljd.build"]}}
:cljd/opts {:kind :dart
:main babashka.cli}}