Why inline source maps?
Today I learned that it is possible to include source maps directly into your minified JavaScript file instead of having them in a separate example.min.map file. I wonder: why would anybody want to do something like that ? The benefit of having source maps is clear to me: one can for example debug errors with the original, non-compressed source files while running the minified files. The benefit of minimization is also clear : the size of source files is greatly reduced, making it quicker for browsers to download. So why on Earth I would want to include the source maps into the minified file,