1
0

deps.edn 1.3 KB

1234567891011121314151617181920212223242526
  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. funcool/promesa {:mvn/version "11.0.678"}
  13. cljs-bean/cljs-bean {:mvn/version "1.5.0"}}
  14. :aliases
  15. ;; This runs tests with nodejs. Would be nice to run this with in a browser env
  16. ;; since this is how its normally run in the app but this requires more setup
  17. ;; with karma, shadow-cljs.edn and headless mode on CI
  18. {:test {:extra-paths ["test"]
  19. :extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
  20. org.clojure/clojurescript {:mvn/version "1.11.132"}
  21. logseq/outliner {:local/root "../outliner"}}
  22. :main-opts ["-m" "cljs-test-runner.main"]}
  23. :clj-kondo {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
  24. :main-opts ["-m" "clj-kondo.main"]}}}