Mike Fikes

Results 162 comments of Mike Fikes

For those encountering this ticket, to have the default behavior, you'd start with a `deps.edn` that looks like this: ```clojure {:deps {clojure-complete {:mvn/version "0.2.4" :exclusions [[org.clojure/clojure]]} org.clojure/tools.nrepl {:mvn/version "0.2.12" :exclusions...

Perhaps one interesting use case would be a fairly complex project with several profiles (and ultimately potentially different aliases in them). I don't know if this is possible, but something...

I suppose a bigger problem here is that git deps and `:local/root` deps, aren't really "deps" as far as `lein` is concerned. (They are really just extra directories on the...

A related aspect: If you do `lein deps :tree`, the dependencies are shown as a flat list, as opposed to a tree. A consequence is that if `lein` is used...

A variant of this issue: If you want to depend on ClojureScript as a [Git Dep](https://clojure.org/news/2018/01/05/git-deps) (by, for example, making use of [`lein-tools-deps`](https://github.com/RickMoynihan/lein-tools-deps)), then the ClojureScript [gitlib](https://github.com/clojure/tools.gitlibs) tree is simply...

Thanks @nathanmarz ! I took a quick look at your latest commit. I haven't tried it yet, but it looks like you are using prefix list notation in the `ns`...

@nathanmarz Following up on my last comment: Yes, just to confirm, I tried Specter master and the prefix list notation causes an issue for ClojureScript: ``` cljs.user=> (require '[com.rpl.specter :refer...

Currently Planck is the only environment I'm aware of that supports `cljs.test` in bootstrap mode (I had to make some minor changes to port that namespace.) I'm hoping we can...

FYI, David Nolen expressed interest / approval in a patch that would make `cljs.test` usable for bootstrap environments. See http://dev.clojure.org/jira/browse/CLJS-1626 This would be a big step towards addressing Nathan's last...

Cool. I confirmed that the released version of Planck (1.10) works with Specter master. (As an aside, I had to tell Planck to enable `:static-fns true` by additionally passing `-s`...