deps.edn 1.1 KB

123456789101112131415161718192021222324
  1. {:paths ["src"]
  2. :deps
  3. ;; External deps should be 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. ;; local deps
  7. logseq/db {:local/root "../db"}
  8. logseq/common {:local/root "../common"}
  9. ;; stubbed in nbb
  10. com.lambdaisland/glogi {:mvn/version "1.1.144"}
  11. ;; built in to nbb
  12. cljs-bean/cljs-bean {:mvn/version "1.5.0"}}
  13. :aliases
  14. ;; This runs tests with nodejs. Would be nice to run this with in a browser env
  15. ;; since this is how its normally run in the app but this requires more setup
  16. ;; with karma, shadow-cljs.edn and headless mode on CI
  17. {:test {:extra-paths ["test"]
  18. :extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
  19. org.clojure/clojurescript {:mvn/version "1.11.54"}}
  20. :main-opts ["-m" "cljs-test-runner.main"]}
  21. :clj-kondo {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2023.05.26"}}
  22. :main-opts ["-m" "clj-kondo.main"]}}}