deps.edn 1.4 KB

12345678910111213141516171819202122232425262728
  1. {:paths ["src"]
  2. :deps
  3. ;; These nbb-logseq deps are kept in sync with https://github.com/logseq/nbb-logseq/blob/main/bb.edn
  4. {com.andrewmcveigh/cljs-time {:git/url "https://github.com/logseq/cljs-time" ;; fork
  5. :sha "5704fbf48d3478eedcf24d458c8964b3c2fd59a9"}
  6. funcool/promesa {:mvn/version "11.0.678"}
  7. cljs-bean/cljs-bean {:mvn/version "1.5.0"}
  8. ;; Any other deps should be added here and to nbb.edn
  9. borkdude/rewrite-edn {:mvn/version "0.4.9"}
  10. logseq/db {:local/root "../db"}
  11. logseq/common {:local/root "../common"}
  12. ;; stubbed via logseq.common.log
  13. com.lambdaisland/glogi {:git/url "https://github.com/lambdaisland/glogi"
  14. :git/sha "30328a045141717aadbbb693465aed55f0904976"}}
  15. :aliases
  16. ;; This runs tests with nodejs. Would be nice to run this with in a browser env
  17. ;; since this is how its normally run in the app but this requires more setup
  18. ;; with karma, shadow-cljs.edn and headless mode on CI
  19. {:test {:extra-paths ["test"]
  20. :extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
  21. org.clojure/clojurescript {:mvn/version "1.11.132"}
  22. logseq/outliner {:local/root "../outliner"}}
  23. :main-opts ["-m" "cljs-test-runner.main"]}
  24. :clj-kondo {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
  25. :main-opts ["-m" "clj-kondo.main"]}}}