There was an error while loading. Please reload this page.
An experiment in using Source Maps, mapping compiled javascript back into the original source file (coffee, pogo, unminified js, etc.)
brew install closure-compiler
afile.js
closure --create_source_map 'afile.js.map' --source_map_format V3 afile.js > afile.min.js
//@ sourceMappingURL=afile.js.map
afile.min.js
afile.js.map
There's a node.js module for reading and writing source maps here: https://github.com/mozilla/source-maps