mranderson
mranderson copied to clipboard
Dependency inlining and shadowing
altho MrAnderson is mainly meant to be used on applications, inlining/shadowing their dependencies. it is possible to inline a library which has its dependencies inlined already. Wonder if this just...
since those dependencies are prefixed by mranderson but the test files are processed at the moment. see a particular case of this: clojure-emacs/cider-nrepl#183
As it is a touched up version of `clojure.tools.namespace.move` could be used separately from MrAnderson
example from [here](https://github.com/TheClimateCorporation/claypoole/blob/a51fd64df53c61a4982eb9144f6c66a45d7d6bb2/src/clj/com/climate/claypoole.clj#L27) from claypoole ```clojure (:import [com.climate.claypoole.impl PriorityThreadpool PriorityThreadpoolImpl] [...]) ``` this import prefixes two classes of claypoole itself. One of those classes is created with a deftype, the...
## Currently While making some changes to MrAnderson, I was curious to know the best way to build and install locally. I stumbled on the Makefile. And looked at what...
## Problem The MrAnderson readme has a cljdoc badge which is showing "API import failed":  I assume that we'd like to fix this. ## Diagnosis Cljdoc is barfing when...
Namespaces can require `clojure.core` in their ns form. While rare, that was actually used as a workaround for [a now-fixed Cloverage issue.](https://github.com/cloverage/cloverage/issues/312) ...when mranderson would find such a require, it...