forked from clj-commons/durable-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bb.edn
36 lines (29 loc) · 786 Bytes
/
bb.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
{:paths ["src"]
:pod {flexiana/durable-queue {:path "./target/pod-flexiana.durable-queue.jar"
:cache false}}
:tasks
{nrepl
{:doc "Starts the REPL"
:task (clojure "-M:dev:nrepl")}
style
{:doc "Checks code style"
:task (clojure "-M:cljfmt check src")}
format
{:doc "Formats codebase"
:task (clojure "-M:cljfmt fix src")}
kondo
{:doc "Runs kondo linter"
:task (clojure {:dir "."} "-M:kondo src test")}
kibit
{:doc "Runs kibit linter"
:task (clojure {:dir "."} "-M:kibit ")}
test
{:doc "Runs tests"
:task (clojure {:dir "."} "-M:dev:test")}
libupdate
{:doc "Check for newer libraries"
:task (clojure "-M:outdated")}
pod
{:doc "Build the pod"
:task (clojure "-T:build uber")}
}}