Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Sunil S Nandihalli
Thanks Thomas, I fixed the issue. It was not even recompiling. Like you said, lein clean was not removing all the files. When I manually deleted the files, I realized that the cljs files were not even getting compiled. I had specifying the hook to leiningen.cljsbuild .Thanks again for helping me th

Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Thomas Heller
Did you lein clean? Although I'm not sure cljsbuild actually cleans anything. Delete resources/public/js/out manually if clean doesn't help. If that also doesn't help try this lein repl (clojure.java.io/resource "goog/base.js") That should give you the URL of a base.js inside the closure-libra

Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Sunil S Nandihalli
I added all the recommended exclusions and I still see the above issue I mentioned. On Sun, Mar 6, 2016 at 7:03 PM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Thanks Thomas for the response > > when I did > > lein deps :tree | egrep google > > I got > >[com.google.javascript/c

Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Sunil S Nandihalli
Thanks Thomas for the response when I did lein deps :tree | egrep google I got [com.google.javascript/closure-compiler "v20151216"] [org.clojure/google-closure-library "0.0-20151016-61277aea"] [org.clojure/google-closure-library-third-party "0.0-20151016-61277aea"] the full output i

Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Thomas Heller
That was an issue with old closure library releases but was fixed a while ago. Try lein clean and make sure there are no conflicting versions being used (via lein deps :tree). -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, se

Re: cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Sunil S Nandihalli
Please find my project.clj here https://gist.github.com/f3bcb03fdbbee75b56df Thanks, Sunil On Sun, Mar 6, 2016 at 6:18 PM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Hi Everybody, > when I compile my cljs project, I find that goog/base.js has the contents > > // This is a dummy fil

cljs build goog/base.js is not getting generated properly..

2016-03-06 Thread Sunil S Nandihalli
Hi Everybody, when I compile my cljs project, I find that goog/base.js has the contents // This is a dummy file to trick genjsdeps into doing the right thing. // TODO(nicksantos): fix this because of this my compiled js file is having trouble finding the goog namespace. What is causing this to h