Skip to content

test & ci: bump deps, add test lib #298

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
lread/status-line {:git/url "https://github.com/lread/status-line.git"
:sha "cf44c15f30ea3867227fa61ceb823e5e942c707f"}
etaoin/etaoin {:mvn/version "1.0.40"}
io.github.babashka/neil {:git/tag "v0.3.65" :git/sha "9a79582"}}
io.github.babashka/neil {:git/tag "v0.3.67" :git/sha "054ca51"}}
:tasks {;; setup
:requires ([clojure.string :as string]
[lread.status-line :as status])
Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
:override-deps {org.clojure/clojure {:mvn/version "1.11.3"}}
:main-opts ["-m" "clj-kondo.main"]}

:eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.2"}}
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.3"}}
:main-opts ["-m" "eastwood.lint" {:source-paths ["src"]
:test-paths ["test"]
:add-linters [:performance]
Expand Down Expand Up @@ -122,7 +122,7 @@
cli-matic/cli-matic {:mvn/version "0.5.4"}}}

:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.11.3"}}
:extra-deps {metosin/malli {:mvn/version "0.16.1"}
:extra-deps {metosin/malli {:mvn/version "0.16.2"}
io.aviso/pretty {:mvn/version "1.4.4"}}
:ns-default lread.apply-import-vars}

Expand All @@ -149,7 +149,7 @@
;;
;; Deployment
;;
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.4"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:extra-paths ["src" "build"]
:ns-default build}

Expand Down
81 changes: 45 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"karma-cljs-test": "^0.1.0",
"karma-junit-reporter": "^2.0.0",
"karma-spec-reporter": "^0.0.36",
"shadow-cljs": "^2.28.9"
"shadow-cljs": "^2.28.10"
}
}
13 changes: 12 additions & 1 deletion script/test_libs.clj
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,18 @@
;; lib defs
;;

(def libs [{:name "ancient-clj"
(def libs [{:name "adorn"
:version "0.1.131-alpha"
:platforms [:clj :cljs]
:github-release {:repo "fabricate-site/adorn"
:via :tag
:version-prefix "v"}
:patch-fn deps-edn-v1-patch
:show-deps-fn cli-deps-tree
;; TODO: cljs tests were spitting out lots of warnings and errors when I tried,
;; revisit next version bump
:test-cmds ["clojure -X:dev:test"]}
{:name "ancient-clj"
:version "2.0.0"
:platforms [:clj]
:github-release {:repo "xsc/ancient-clj"
Expand Down