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
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.
>
>
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
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
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
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
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
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