Hello All,
Are there any thoughts yet on distributing ClojureScript libraries?
ClojureScript does whole program optimization, it needs the
sources. Copying the sources into your main project isn't really a
solution, not a long term solution at the very least.
At the very least it would be nice of
s to do compilation.
>
> On Aug 8, 12:09 pm, Eric Merritt wrote:
>> Hello All,
>>
>> Are there any thoughts yet on distributing ClojureScript libraries?
>> ClojureScript does whole program optimization, it needs the
>> sources. Copying the sources into your main
Thanks Marko! However, I am looking at using this for a new project
and I am going to try to treat javascript as nothing more the
assembler for the browser. That being the case I am really going to
try to avoid worrying too much about how Clojurescript compiles to
Javascript.
The other side of tha
On Tue, Aug 9, 2011 at 1:08 PM, Chris Granger wrote:
> FWIW, I've already done what Brenton describes (jar'ing the compiler
> and such) for noir-cljs (https://github.com/ibdknox/noir-cljs) which
> adds compilation as middleware.
This is actually really really great. Though a little specific to no