-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathbb.edn
More file actions
18 lines (18 loc) · 991 Bytes
/
Copy pathbb.edn
File metadata and controls
18 lines (18 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:paths ["src"]
:deps {local/deps {:local/root "."}
dev.weavejester/cljfmt {:mvn/version "0.16.4"}
org.babashka/spec.alpha {:git/url "https://github.com/babashka/spec.alpha"
:git/sha "b6eb0f2208ab036c0a5d0e7235cb0b09d2feabb7"}}
:tasks
{:requires ([cljfmt.tool :as fmt]
[docker-clojure.core :as dc])
clean (dc/-main "clean")
dockerfiles {:depends [clean]
:task (apply dc/-main "dockerfiles" *command-line-args*)}
manifest (apply dc/-main "manifest" *command-line-args*)
build-images {:task (apply dc/-main "build-images" *command-line-args*)}
test (clojure '-X:test)
fmt-check {:doc "Check formatting with cljfmt"
:task (fmt/check {:paths ["src" "test" "bb.edn" "deps.edn" "tests.edn"]})}
fmt-fix {:doc "Fix formatting with cljfmt"
:task (fmt/fix {:paths ["src" "test" "bb.edn" "deps.edn" "tests.edn"]})}}}