clojurescript source maps: chrome's expected behavior, firefox support

2014-02-17 Thread Ransom Williams
First of all thanks to everyone working on clojure for making web development suck less. I recently sandboxed a clojure server application, and the tooling, documentation, and availability of libraries are all awesome. Anyway, I'm starting in with a clojurescript client now and want to

Re: clojurescript source maps: chrome's expected behavior, firefox support

2014-02-17 Thread David Nolen
On Mon, Feb 17, 2014 at 3:43 AM, Ransom Williams auvergn...@gmail.comwrote: First of all thanks to everyone working on clojure for making web development suck less. I recently sandboxed a clojure server application, and the tooling, documentation, and availability of libraries are all

Re: ClojureScript source maps

2012-03-24 Thread Brandon Bloom
The first step would be just to get the compiler to emit an optional source map. That's definitely the first step! After that, there's going to need to be some way to serve those source maps via HTTP upon request from the browser. However, there's a first step to the first step: Getting

Re: ClojureScript source maps

2012-03-24 Thread David Nolen
On Fri, Mar 23, 2012 at 10:51 PM, Brandon Bloom snprbo...@gmail.com wrote: The first step would be just to get the compiler to emit an optional source map. That's definitely the first step! After that, there's going to need to be some way to serve those source maps via HTTP upon request

Re: ClojureScript source maps

2012-03-24 Thread Brandon Bloom
We could also decide to handle multi-mapping ourselves - that is write the code that can produce a merged source map. It seems likely (already done?) for browsers to support the X-SourceMap header and //@ comments for the target use case of CoffeeScript - Javascript - Minified Javascript

Re: ClojureScript source maps

2012-03-24 Thread Sean Allen
On Sun, Jul 24, 2011 at 1:19 PM, John concavel...@gmail.com wrote: Is there any interest in having ClojureScript generate source maps? http://code.google.com/p/closure-compiler/wiki/SourceMaps There are a couple of ways to accomplish this. Lots of interest from me. -- You received this

Re: ClojureScript source maps

2012-03-22 Thread Brandon Bloom
SourceMap support is rapidly approaching general availability in Chrome and Firefox: http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ I'd love to see this happen and *may* be able to find time to help with implementation. Any intel on existing attempts at this? On Sunday,

Re: ClojureScript source maps

2012-03-22 Thread David Nolen
There are no existing attempts. The first step would be just to get the compiler to emit an optional source map. Bonus points if we can merge source maps from the ClojureScript compiler and Closure advanced compilation. David On Thu, Mar 22, 2012 at 6:05 AM, Brandon Bloom snprbo...@gmail.com

ClojureScript source maps

2011-07-24 Thread John
Is there any interest in having ClojureScript generate source maps? http://code.google.com/p/closure-compiler/wiki/SourceMaps There are a couple of ways to accomplish this. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send

Re: ClojureScript source maps

2011-07-24 Thread David Nolen
On Sun, Jul 24, 2011 at 1:19 PM, John concavel...@gmail.com wrote: Is there any interest in having ClojureScript generate source maps? http://code.google.com/p/closure-compiler/wiki/SourceMaps There are a couple of ways to accomplish this. I'm sure there is a considerable amount of