Radford Smith
Radford Smith
Please answer the following questions and leave the below in as part of your PR. - [x] This PR corresponds to an [issue with a clear problem statement](https://github.com/babashka/babashka/blob/master/doc/dev.md#start-with-an-issue-before-writing-code). - https://github.com/babashka/neil/issues/81...
Right now the `bb tests` task is hard-coded to run `tests.clj`. To keep the test suite manageable going forward it would be helpful if we could support the standard `clojure.test`...
Source: https://clojure.org/reference/deps_and_cli#_coord_attributes Related: https://clojure.atlassian.net/browse/TDEPS-228 Lib format | Inferred `:git/url` -- | -- io.github.ORG/PROJECT | `"https://github.com/ORG/PROJECT.git"` com.github.ORG/PROJECT | `"https://github.com/ORG/PROJECT.git"` io.gitlab.ORG/PROJECT | `"https://gitlab.com/ORG/PROJECT.git"` com.gitlab.ORG/PROJECT | `"https://gitlab.com/ORG/PROJECT.git"` io.bitbucket.ORG/PROJECT | `"https://bitbucket.org/ORG/PROJECT.git"` org.bitbucket.ORG/PROJECT | `"https://bitbucket.org/ORG/PROJECT.git"`...
From the README: > :clojure-executables > > A vector of strings identifying possible install locations for the clojure command line tool script. They will be tried in order, with the...
## Overview I'm working on a PR for `neil` (https://github.com/babashka/neil/pull/51) which will make it possible to simplify the "Quick start" for Kit: ``` brew install clojure babashka/brew/neil neil new io.github.kit-clj/kit...
``` $ BABASHKA_PRELOADS="" bb --config
I needed to use the same `tools.deps` inference for [`bbin`](https://github.com/rads/bbin) so I moved the code to a shared library: https://github.com/rads/deps-infer I suggest we add a dependency for this lib in...
## Overview - Add a `template.edn` file to the template root (required by `deps-new`) - Implement custom `data-fn` and `template-fn` functions to support Selmer templates - Add tests to compare...
The docs make it look like it's a Leiningen-only plugin, but it works fine with the latest Clojure tooling: ``` $ clojure \ -Sdeps '{:deps {marginalia/marginalia {:mvn/version "0.9.1"}}}' \ -M...
**Description:** During local dev we use `:local/root` in the `deps.edn` file for libs we want to override. **Problem:** Editing `deps.edn` manually when checking out a branch is tedious. Having a...