@rbarilani/remove-source-map-url-webpack-plugin
v1.1.0
Published
Remove source map url comments webpack plugin
Downloads
33,743
Readme
Remove Source Map Url Webpack Plugin
This is a webpack plugin that removes # sourceMappingURL
after compilation.
It's a quick fix for wrong # sourceMappingURL
comments left in vendor source code when compiling without minification (causing 404 responses from the server).
Install
You can install the plugin via npm or yarn, pick the right version based on the webpack version used in your project.
Webpack 4
For webpack 4 install the 0.x version
$ npm install @rbarilani/[email protected] --save-dev
Webpack 5
For webpack 5 install the latest version
$ npm install @rbarilani/remove-source-map-url-webpack-plugin@latest --save-dev
Usage
var RemoveSourceMapUrlWebpackPlugin = require('@rbarilani/remove-source-map-url-webpack-plugin');
var webpackConfig = {
entry: 'index.js',
output: {
path: 'dist',
filename: 'index_bundle.js'
},
plugins: [
new RemoveSourceMapUrlWebpackPlugin({
test: /index_bundle\.js$/
})
]
};
Options
test
: A condition that must be met to include or exclude the assets that should be processed (default:/\.js($|\?)/i
). The allowed types for a condition are:String
- A string for exact matching with the file name of the assetRegExp
- A regular expression which will be tested against the file name of the assetFunction(fileName:string):bool
- A function that will be invoked with the file name of the asset as the argument and must returntrue
to include the asset orfalse
to exclude it
Contributing
You're are welcome to contribute to this project by submitting issues and/or pull requests.
Development
NPM scripts
npm test
- run test suitenpm run test:coverage
- run test suite and generate coverage reportsnpm run test:build
- build the test mock project with webpack-clinpm run lint
- lint the code base with eslintnpm run lint:fix
- try to fix as many linting issues as possible (the command will also format the code)npm run format
- format code following project conventionsnpm run coveralls
- send coverage report to https://coveralls.io
License
This project is licensed under MIT.