Francis Avila

Results 10 comments of Francis Avila

One minimal reproducer: ``` mkdir -p project/foo project/bar echo '{:deps {}}' > project/bar/deps.edn echo '{:deps {bar {}} :aliases {:default {:override-deps {bar {:local/root "../bar"}}}}}' > project/foo/deps.edn ``` (Other variants: use `:deps...

A workaround for the "Manifest type not detected" error is explicitly note the manifest type in your `:default-deps` or `:override-deps`, e.g. `{:default-deps {bar {:local/root "../bar" :deps/manifest :deps}}}`

#198 seems like a fairly serious issue if backward compatibility is expected to get out of alpha.

Flattening deps is a problem for me. I was using lein-tools-deps to build library jars for deps-managed projects, and flattening really messes up the deps tree and makes exclusions and...

This thought occurred to me. I don't know how lein internals so I'm not sure if this is implementable, but I think what I want in effect is for all...

By path filtering, I mean it's common to have a setup like this: 1. If path starts with `/static` (or host is `static.example.org`, etc), have the webserver attempt to serve...

Yes that would work perfectly for me and I think it is a more sensible default anyway. (It's what I would have done if I could have injected a function...

Sure, I think I understand enough to do path-preserving cache busting very easily. Expect a pull-request in a day or two. This patch will be extremely modest: it will just...

I added #11 to address this.

For any future readers: A fork with this patch is available on [clojars](https://clojars.org/org.clojars.favila/datomock) with coordinate `[org.clojars.favila/datomock "0.2.2-favila1"]`. We are already using it in our (large) datomock-using test suite with 1.0.6527...