Re: [ClojureScript] cljs.analyzer: how to use it?

2016-01-25 Thread Yehonathan Sharvit
I have an issue when requiring cljs.js and compiling in `:optimizations :whitespace` I get the following error in the browser: goog.require could not find: cljs.core$macros Any idea why it happens and how to solve it? On Thu, Jan 21, 2016 at 4:21 PM, Mike Fikes wrote: >

Re: [ClojureScript] [Ann] Planck 1.9

2016-01-25 Thread Jamie Orchard-Hays
That’s really great. Mike’s doing terrific work. Jamie > On Jan 25, 2016, at 4:21 AM, Karel Miarka wrote: > > On Monday, January 25, 2016 at 10:16:34 AM UTC+1, Karel Miarka wrote: >> I'm just curious if there is any chance to run it on Linux? >> Thanks! > > The answer

Re: [ClojureScript] [Ann] Planck 1.9

2016-01-25 Thread Mike Fikes
Yeah, I’d like Planck to work on Linux, but I haven’t been focused on it as a high priority. > On Jan 25, 2016, at 4:21 AM, Karel Miarka wrote: > > On Monday, January 25, 2016 at 10:16:34 AM UTC+1, Karel Miarka wrote: >> I'm just curious if there is any chance to run it

[ClojureScript] Re: [Ann] Planck 1.9

2016-01-25 Thread Karel Miarka
I'm just curious if there is any chance to run it on Linux? Thanks! -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group

[ClojureScript] Re: [Ann] Planck 1.9

2016-01-25 Thread Karel Miarka
On Monday, January 25, 2016 at 10:16:34 AM UTC+1, Karel Miarka wrote: > I'm just curious if there is any chance to run it on Linux? > Thanks! The answer is probably here https://twitter.com/mfikes/status/641737404018216960 -- Note that posts from new members are moderated - please be patient

Re: [ClojureScript] Will advanced optimizations be officially supported on nodejs?

2016-01-25 Thread Moe Aboulkheir
I don't know what the official position is, but I use :advanced on nodejs a bunch. Take care, Moe On Mon, Jan 25, 2016 at 4:36 AM, Roc King wrote: > Hi all! > > It seems unclear from the quick start wiki page[1]. But in Clojurescript > Unraveled[2], it says that

Re: [ClojureScript] Will advanced optimizations be officially supported on nodejs?

2016-01-25 Thread Andrey Antukh
Co-Author of ClojureScript Unreveled book here. It seems tha that statement is deprecated now, I can remember some issues in the past for some optimizations modes but now I think it works pretty well in all optimization modes. Myself I'm using advanced compilation mode with node in many of my

[ClojureScript] Re: Will advanced optimizations be officially supported on nodejs?

2016-01-25 Thread Thomas Heller
Technically there is nothing holding you back from using :advanced on node, IF you supply all externs that is. And this is where the problem lies, you cannot easily provide externs since the closure compiler doesn't understand "require" properly. CloSure assumes there is one global namespace

Re: [ClojureScript] Re: Will advanced optimizations be officially supported on nodejs?

2016-01-25 Thread Moe Aboulkheir
On Mon, Jan 25, 2016 at 10:04 AM, Thomas Heller wrote: > Technically there is nothing holding you back from using :advanced on > node, IF you supply all externs that is. And this is where the problem > lies, you cannot easily provide externs since the closure compiler