Maria Geller

Results 33 comments of Maria Geller

Thanks for reporting this. This will be fixed with the next release, which is currently being tested. You can already try the snapshot version `2.0.0-SNAPSHOT`. Let me know if you...

It should rebuild your project once you made changes to your code. Do you have a link to your project or could you attach your `project.clj` file?

Sorry, I can't reproduce your problem. I assume you are using different `output-dir`s in your config? It would be really helpful if you could post your config.

What you could do is to have different `output-dir`s for your two different builds, for example: ``` clojure :cljsbuild {:builds [{:id "dev" :figwheel true :source-paths ["src"] :compiler {:main foo.core :asset-path...

This issue is the same as #414. Will look into fixing this with 2.0.

@oubiwann @alesguzik Sorry for the long wait. Is this still a problem? Would you mind sharing your `project.clj` or a minimal repo if possible?

Thank you for the detailed report! Regarding (2), just to clarify, we would only take the exclusions that have been specified for the cljsbuild plugin in the initial project.clj file....

Would something like this work in your case? ``` clojure (defproject my-project "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.8.51"]] :source-paths ["src"] :clean-targets ["out"] :target-path "target"...

Your example should work if you specify the same build id across the different profiles, e.g.: ``` clojure :profiles {:cljs-shared ;; common configuration shared across all builds {:cljsbuild {:builds {:app...