Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rbarilani/remove-source-map-url-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rbarilani/remove-source-map-url-webpack-plugin

Remove source map url comments webpack plugin

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Remove Source Map Url Webpack Plugin

npm dependencies Status devDependencies Status Build Status Coverage Status

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/remove-source-map-url-webpack-plugin@0.x --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$/
    })
  ]
};

Configuration

  • 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 asset key
    • RegExp - A regular expression which will be tested against the asset key
    • Function(key:string):bool - A function that will be invoked with the asset key as the argument and must return true to include the asset or false 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 suite
  • npm run test:coverage - run test suite and generate coverage reports
  • npm run test:build - build the test mock project with webpack-cli
  • npm run lint - lint the code base with eslint
  • npm 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 conventions
  • npm run coveralls - send coverage report to https://coveralls.io

License

This project is licensed under MIT.

Keywords

FAQs

Package last updated on 29 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc