16 lines
693 B
Clojure
16 lines
693 B
Clojure
{:paths ["src"]
|
|
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
|
|
org.clojure/core.async {:mvn/version "1.6.681"}}
|
|
:aliases
|
|
{:dev {:extra-paths ["." "test"]}
|
|
:test {:extra-paths ["test"]
|
|
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
|
|
:main-opts ["-m" "cognitect.test-runner"]
|
|
:exec-fn cognitect.test-runner.api/test}
|
|
:counter {:main-opts ["-m" "examples.counter"]}
|
|
:timer {:main-opts ["-m" "examples.timer"]}
|
|
:list {:main-opts ["-m" "examples.list-selection"]}
|
|
:spinner {:main-opts ["-m" "examples.spinner"]}
|
|
:http {:main-opts ["-m" "examples.http"]}
|
|
:views {:main-opts ["-m" "examples.views"]}}}
|