Files
logseq/clj-e2e/deps.edn
Tienson Qin a9a9905b05 feat: tag-scoped property choices (#12295)
* feat: tag-scoped property choices

* Able to hide global choices per tag

* add e2e tests
2026-01-04 13:42:27 +08:00

30 lines
1.6 KiB
Clojure

{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;; io.github.pfeodrippe/wally {:local/root "../../../wally"}
io.github.pfeodrippe/wally {:git/url "https://github.com/logseq/wally"
:sha "8571fae7c51400ac61c8b1026cbfba68279bc461"
:exclusions [com.microsoft.playwright/playwright]}
com.microsoft.playwright/playwright {:mvn/version "1.57.0"}
;; io.github.zmedelis/bosquet {:mvn/version "2025.03.28"}
org.clj-commons/claypoole {:mvn/version "1.2.2"}
metosin/jsonista {:mvn/version "0.3.13"}
clj-time/clj-time {:mvn/version "0.15.2"}}
:aliases
{:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
:serve {:deps {org.babashka/http-server {:mvn/version "0.1.13"}}
:main-opts ["-m" "babashka.http-server"]
:exec-fn babashka.http-server/exec}
:test {:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}
:dev {:extra-paths ["dev" "test"]}
:dev-run-rtc-extra-test {:extra-paths ["dev" "test"]
:exec-fn user/run-rtc-extra-test2}
:dev-run-rtc-extra-part2-test {:extra-paths ["dev" "test"]
:exec-fn user/run-rtc-extra-part2-test2}
:dev-run-all-basic-test {:extra-paths ["dev" "test"]
:exec-fn user/run-all-basic-test}}}