lein-ancient
lein-ancient copied to clipboard
Check your Projects for outdated Dependencies
In `project.clj` I have: ```clj :aliases {"test" ["kaocha"] "kaocha" ["with-profile" "+test" "run" "-m" "kaocha.runner"]}) ``` Running `lein test` or `lein kaocha` both result in the tests being run (and completed...
I think `lein ancient upgrade` should have non-zero exit code when the tests fail. Currently what happens is that the test-failing code goes through `leiningen.core.main/exit` with the flag set causing...
Is it technically feasible for ancient-clj to provide date metadata for releases? This would allow me to implement something like: > only report a dependency as old if there are...
I'm not sure how doable this will be, but I figured I'd post it anyway. We have some libraries which are published as a bundle, and the consumer should use...
The project.clj for reagent-forms has an out-of-date `lein-cljsbuild` "1.0.3" which lein-ancient didn't notice (current is "1.1.7").
Over time I expect there will be increasingly widespread adoption of [tools.deps](https://github.com/clojure/tools.deps.alpha) for expressing a library's dependencies, as well as increasing use of Leiningen/tools.deps integrations (such as [`lein-tools-deps`](https://github.com/RickMoynihan/lein-tools-deps)) to minimise...
I get the following error: > :cause "Assert failed: (re-matches #\"(\\s|,)+\" s)" > :via > [{:type java.lang.AssertionError > :message "Assert failed: (re-matches #\"(\\s|,)+\" s)" > :at [ancient.rewrite_clj.v0v4v13.rewrite_clj.node.whitespace$whitespace_node invokeStatic "whitespace.clj" 56]}]...
consider this minimal `project.clj`: (defproject ancientclojure "0.1.0-SNAPSHOT" :plugins [[lein-ancient "0.6.15"]] :dependencies [[org.clojure/clojure "1.8.0" :upgrade :clo]]) We're used to excluding specific dependencies using the `:upgrade` tag in `project.clj`; however, this does...
This is a pie-in-the-sky wishlist feature, and I don't expect you to do anything about it, but... Let's say I have a major project with tons of dependencies that haven't...