0.1.1 • Published 4 years ago

sentry-delete-sourcemaps-webpack-plugin v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Sentry Delete Sourcemaps Webpack Plugin

Delete source map files after upload to Sentry.

Installation

npm i sentry-delete-sourcemaps-webpack-plugin -D

Configuration

// webpack.config.js
const DeleteSourceMapsWebpackPlugin = require('sentry-delete-sourcemaps-webpack-plugin')

module.exports = {
    // ...
    plugins: [
        new DeleteSourceMapsWebpackPlugin()
    ],
    // ...
}