logseq/deps/graph-parser/deps.edn

26 lines
1.2 KiB
Plaintext
Raw Normal View History

{:paths ["src"]
2022-05-24 20:13:24 +00:00
:deps
;; External deps should be kept in sync with https://github.com/logseq/nbb-logseq/blob/main/bb.edn
{com.andrewmcveigh/cljs-time {:git/url "https://github.com/logseq/cljs-time" ;; fork
2022-05-24 20:13:24 +00:00
:sha "5704fbf48d3478eedcf24d458c8964b3c2fd59a9"}
;; local deps
logseq/db {:local/root "../db"}
logseq/common {:local/root "../common"}
;; stubbed in nbb
funcool/promesa {:mvn/version "4.0.2"}
com.lambdaisland/glogi {:mvn/version "1.1.144"}
;; built in to nbb
2022-12-20 07:00:12 +00:00
cljs-bean/cljs-bean {:mvn/version "1.5.0"}}
:aliases
;; This runs tests with nodejs. Would be nice to run this with in a browser env
;; since this is how its normally run in the app but this requires more setup
;; with karma, shadow-cljs.edn and headless mode on CI
{:test {:extra-paths ["test"]
:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}
2024-05-02 10:03:17 +00:00
org.clojure/clojurescript {:mvn/version "1.11.132"}}
:main-opts ["-m" "cljs-test-runner.main"]}
:clj-kondo {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2023.05.26"}}
:main-opts ["-m" "clj-kondo.main"]}}}