-
Notifications
You must be signed in to change notification settings - Fork 5
/
deps.edn
17 lines (17 loc) · 1005 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{:paths ["src"]
:aliases {:dev ;for development
{:extra-paths ["test"]
:extra-deps {manifold/manifold {:mvn/version "0.4.1"}
org.clojure/clojurescript {:mvn/version "1.11.121"}}}
:test ;run tests under console. e.g. clj -M:dev:test
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}}
:main-opts ["-m" "kaocha.runner"]}
:cljs-test
{:extra-paths ["test"]
:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}}
:main-opts ["-m" "cljs-test-runner.main"]}
:build ;customized building process running. e.g. clj -T:build ci
{:deps {io.github.robertluo/build-clj {:git/sha "5d45f58cc20747c136bb320c9b13d65d2bf4cf58"}}
:ns-default build}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.12.15"}}}}}