Re: [ClojureScript] Output File Size too large

2015-02-10 Thread Eduard Bondarenko
I had to update clojure deps to 1.7.0-alpha5 and got 92K file. Here is updated dependencies: :dependencies [[org.clojure/clojure "1.7.0-alpha5"] [compojure "1.3.1"] [hiccup "1.0.5"] [org.clojure/clojurescript "0.0-2816"] [domina

Re: [ClojureScript] Output File Size too large

2015-02-10 Thread adrian . medina
On Tuesday, February 10, 2015 at 12:26:16 PM UTC-5, Viktor Kubinec wrote: > Dňa pondelok, 9. februára 2015 23:29:21 UTC+1 adrian...@mail.yu.edu > napísal(-a): > > Without seeing what exactly the code is calling it will be impossible to > > know for sure. But that is far beyond the size you should

Re: [ClojureScript] Output File Size too large

2015-02-10 Thread Viktor Kubinec
Dňa pondelok, 9. februára 2015 23:29:21 UTC+1 adrian...@mail.yu.edu napísal(-a): > Without seeing what exactly the code is calling it will be impossible to know > for sure. But that is far beyond the size you should be seeing for a small, > pure CLJS project under advanced compilation. You may be

Re: [ClojureScript] Output File Size too large

2015-02-09 Thread adrian . medina
Without seeing what exactly the code is calling it will be impossible to know for sure. But that is far beyond the size you should be seeing for a small, pure CLJS project under advanced compilation. You may be inadvertently pulling in large Closure dependencies into your code, but impossible to

Re: [ClojureScript] Output File Size too large

2015-02-09 Thread David Nolen
I don't see anything wrong with your project.clj but I am skeptical for now. I've implemented TodoMVC (>200LOC) w/ core.async, Om (which means including React) and the advanced compiled build is ~330K before gzipping, ~85K after gzipping. David On Mon, Feb 9, 2015 at 3:01 PM, Viktor Kubinec wrot

[ClojureScript] Output File Size too large

2015-02-09 Thread Viktor Kubinec
I have written a simple web application using clojurescript ( less than 100 lines of clojurescript code). The output file (js) has 1,4 MB. It seems too large to me, so I think I am doing something wrong here. Could someone please help? I am using "lein cljsbuild once" command to build the js fi