forked from henrygarner/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
33 lines (28 loc) · 1.01 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
{:aliases
{:dev
{:extra-paths ["test"]
:jvm-opts
["-XX:-OmitStackTraceInFastThrow"]}
;; npx shadow-cljs compile test
:cljs
{:extra-paths ["test"]
:extra-deps
{thheller/shadow-cljs {:mvn/version "2.11.23"}}}
;; clj -X:test to run the tests
:test
{:extra-paths ["test"]
:extra-deps
{io.github.metabase/hawk {:sha "ac3c663b22114d99303b8da88d982248da391780"}}
:exec-fn mb.hawk.core/find-and-run-tests-cli}
;; clojure -M:check
:check
{:extra-deps {athos/clj-check {:git/url "https://github.com/athos/clj-check.git"
:sha "518d5a1cbfcd7c952f548e6dbfcb9a4a5faf9062"}}
:main-opts ["-m" "clj-check.check"]}
;; clj -T:whitespace-linter
:whitespace-linter
{:deps {com.github.camsaul/whitespace-linter {:sha "e35bc252ccf5cc74f7d543ef95ad8a3e5131f25b"}}
:ns-default whitespace-linter
:exec-fn whitespace-linter/lint
:exec-args {:paths ["deps.edn" "src" "test"]
:include-patterns ["\\.clj[cs]?$" "\\.edn$"]}}}}