[ANN] Happy 0.5.0 - a Clojure(Script) HTTP async client library

2015-09-20 Thread Julien Eluard
Hi, I am pleased to announce the first release of happy [1] - a Clojure(Script) HTTP async client library with swappable client implementation. Happy is a low-level HTTP async client callback driven following RING spec. Most advanced usage can be implemented on top of an interceptor [2] abstracti

Re: [ClojureScript] ANN: ClojureScript 0.0-3196, Conditional Reading, REPLs, and Code Motion

2015-04-10 Thread Julien Eluard
Hi, that looks like a tools.reader version conflict. You can get more details about all your project dependencies using `lein deps :tree`. Make sure the only tools.reader is the one coming from ClojureScript. Julien Le vendredi 10 avril 2015 23:42:35 UTC-3, Ravindra Jaju a écrit : > Hi. > >

Re: ANN: ClojureScript 0.0-2371

2014-10-10 Thread Julien Eluard
Hi David, thanks once again for the continuous effort to improve the ClojureScript compiler. Some warnings are now printed when using a specific `include-macros` syntax. I wanted to confirm that this syntax was indeed incorrect. An example is: [secretary.core :as secretary :include-macros true

Re: Clojure and clojurescript deps in libraries

2014-06-07 Thread Julien Eluard
Hi Nikita, it does sound like a good advice from a dependency perspective. If you don't do that clojurescript and all its dependencies leak to projects using your library and that's definitively problematic. For clojure/clojurescript projects it's even more important to consider that point. Th

[ANN] Lucuma 0.2.0

2014-02-20 Thread Julien Eluard
Hi, I am pleased to announce release 0.2.0 of lucuma [1][2] - a Web Components library for ClojureScript. Lucuma helps with creating custom HTML elements encapsulating document, style and logic. You can think of it as Google polymer in ClojureScript world. This release [3] introduces element def

Re: [ClojureScript] Re: Fast path to having fun with ClojureScript

2013-10-28 Thread Julien Eluard
Thanks that's clearer now. Somehow I understood that output-to was supposed to be relative to output-dir. One thing that prevents me to use optimizations :none is that the generated js are not as straightforward to use as with others optimizations: you need to manually include some js files (at

Re: Fast path to having fun with ClojureScript

2013-10-28 Thread Julien Eluard
Hi David, awesome to see all those recent improvements in the ClojureScript compiler! Thanks for the hard work. Compilation is super fast in optimizations :none mode. A dumb change will be compiled in below a second. Now the same change in optimizations :simple takes 30 s. Is that expected? Is

Re: ANN: ClojureScript 0.0-1877 (Breaking change)

2013-09-09 Thread Julien Eluard
Hi David, that is really nice! Speedup during incremental build is definitively the one thing that would improve my ClojureScript dev workflow. I gave this build a try with lein-cljsbuild and got some unexpected WARNINGS. What I am doing: * lein cljsbuild once => everything is fine * change som