浏览代码

fix: update db's nbb.edn to match deps.edn

Looks like we forgot to add malli to deps.edn awhile back
Gabriel Horner 1 年之前
父节点
当前提交
50698c190d
共有 2 个文件被更改,包括 10 次插入5 次删除
  1. 8 5
      deps/db/deps.edn
  2. 2 0
      deps/db/nbb.edn

+ 8 - 5
deps/db/deps.edn

@@ -1,16 +1,19 @@
 {:deps
- ;; External deps should be kept in sync with https://github.com/logseq/nbb-logseq/blob/main/bb.edn
+ ;; These deps are kept in sync with https://github.com/logseq/nbb-logseq/blob/main/bb.edn
  {datascript/datascript {:git/url "https://github.com/logseq/datascript" ;; fork
                          :sha     "0a3ce97e0f3d6afffc395e5a901312d208ce68e2"}
   datascript-transit/datascript-transit {:mvn/version "0.3.0"
                                          :exclusions [datascript/datascript]}
-  logseq/clj-fractional-indexing        {:git/url "https://github.com/logseq/clj-fractional-indexing"
-                                         :sha     "7182b7878410f78536dc2b6df35ed32ef9cd6b61"}
   cljs-bean/cljs-bean         {:mvn/version "1.5.0"}
   com.cognitect/transit-cljs   {:mvn/version "0.8.280"}
-  logseq/common                {:local/root "../common"}
   funcool/promesa              {:mvn/version "4.0.2"}
-  org.flatland/ordered         {:mvn/version "1.15.11"}}
+  org.flatland/ordered         {:mvn/version "1.15.11"}
+
+  ;; New deps should be added here and to nbb.edn
+  logseq/common                {:local/root "../common"}
+  logseq/clj-fractional-indexing        {:git/url "https://github.com/logseq/clj-fractional-indexing"
+                                         :sha     "7182b7878410f78536dc2b6df35ed32ef9cd6b61"}
+  metosin/malli {:mvn/version "0.16.1"}}
 
  :aliases
  {:clj-kondo

+ 2 - 0
deps/db/nbb.edn

@@ -4,5 +4,7 @@
   {:local/root "../common"}
   metosin/malli
   {:mvn/version "0.16.1"}
+  logseq/clj-fractional-indexing        {:git/url "https://github.com/logseq/clj-fractional-indexing"
+                                         :sha     "7182b7878410f78536dc2b6df35ed32ef9cd6b61"}
   io.github.nextjournal/nbb-test-runner
   {:git/sha "60ed57aa04bca8d604f5ba6b28848bd887109347"}}}