summaryrefslogtreecommitdiff
path: root/bb.edn
blob: 13d7fa676272e44e8ec0107a49fa8b908fa54476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:tasks
 {test:bb {:extra-paths ["src" "test"]
           :extra-deps {io.github.cognitect-labs/test-runner
                        {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
           :task (exec 'cognitect.test-runner.api/test)
           :exec-args {:dirs ["test"]}
           :org.babashka/cli {:coerce {:nses [:symbol]
                                       :vars [:symbol]}}}
  test:clj (clojure "-X:test-clj")
  test:cljs (clojure "-M:test-cljs")
  coverage (clojure "-M:coverage")
  quickdoc {:doc "Invoke quickdoc"
            :extra-deps {io.github.borkdude/quickdoc {:git/tag "v0.2.5", :git/sha "25784ca"}}
            :task (exec 'quickdoc.api/quickdoc)
            :exec-args {:git/branch "main"
                        :github/repo "https://git.nmm.ee/asko/dompa"
                        :source-uri "{repo}/src/branch/{branch}/{filename}#L{row}-L{end-row}"
                        :source-paths ["src/dompa"]}}}}