deps.edn 1.0 KB

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