A few questions about clojurescript & lein-cljsbuild

2012-05-08 Thread Dave Barker
Over the weekend I was playing with Clojurescript One with success. I'm now setting up my own project, I've found it pretty hard going but I've now got a browser repl working and my Clojurescript code building. I have a few questions though: 1. How come the script tags that include your buil

Re: A few questions about clojurescript & lein-cljsbuild

2012-05-08 Thread David Nolen
I can answer some of these: 1. Most optimized sites do this 3. Running browser REPL & auto build - not currently, but that would be a nice feature, open a ticket on GitHub. 2 Java processes - Could probably be done via custom Lein task? 4. ClojureScript One predates lein-cljsbuild. lein-cljsbuild

Re: A few questions about clojurescript & lein-cljsbuild

2012-05-08 Thread Evan Mezeske
3. Although there's no single-command way to do this, I frequently accomplish the same thing by just running "lein cljsbuild auto" in one terminal, and "lein trampoline cljsbuild repl-listen" in another. It works out pretty well for me. -- You received this message because you are subscribed

Re: A few questions about clojurescript & lein-cljsbuild

2012-05-09 Thread Dave Barker
Thanks guys, I opened an issueand I found a pretty good explanation about putting scripts inside the body . Good work with Clojurescript as well, it's really cool.