extract sourceMappingURL comments from modules and offer it to webpack
JavaScript
Latest commit a8ffce7 Dec 8, 2016 @SpaceK33z SpaceK33z committed on GitHub Add LICENSE file

README.md

source map loader for webpack

Extracts SourceMaps for source files that as added as sourceMappingURL comment.

Usage

Documentation: Using loaders

example webpack config

module.exports = {
  module: {
    preLoaders: [
      {
        test: /\.js$/,
        loader: "source-map-loader"
      }
    ]
  }
};

This extracts all SourceMaps from all files. That's not so performance-wise so you may only want to apply the loader to relevant files.

License

MIT (http://www.opensource.org/licenses/mit-license.php)