Piotrek Bzdyl
Piotrek Bzdyl
I have the same issue. I would think that if `docker pull` works without setting `AWS_REGION` env var, `docker build` with `FROM` referencing the same image as the `docker pull`...
I think we could start with the simple version of incremental compilation that would help in multi-module Clojure projects (that was implemented in [my PR to cursive-ide/gradle-clojure](https://github.com/cursive-ide/gradle-clojure/pull/12)): - if there...
I was able to also test the beta version and close the gate/cover from Android Auto - however, it kept showing it's open even though the gate closed and further...
Hello @deg, I have a proof of concept implemenation in my [fork branch](https://github.com/pbzdyl/re-frame-firebase/tree/auth-linking). You can see a demo at https://proto-app.bzdyl.net/ (please check Outstanding issues below before testing). The flow is...
My fix supports only handling the linking - there is no GUI. I am not sure it is a good idea to force users of the library to depend on...
Thank you!
It looks that the `build/classes` issue described above was caused by my existing and complex project setup and works with another sample project. I have submitted PR #12 to implement...
I have tested it again and it looks that the issue was not in my complex project but in the plugin itself. Clojure compile task is [adding `mainSourceSet.output.classesDir` to `compileClasspath`](https://github.com/cursive-ide/gradle-clojure/blob/master/src/main/kotlin/cursive/ClojurePlugin.kt#L68)....
Yes, I think it would be actually better to have a separate output directory for Clojure compiled classes. Otherwise changes to Java source won't trigger Clojure recompilation. This way one...
It looks that the solution would be related to #11 and could be implemented just by configuring separate source set in projects using separate source sets for Java and Clojure...