Socket
Socket
Sign inDemoInstall

@sentry/webpack-plugin

Package Overview
Dependencies
Maintainers
13
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/webpack-plugin - npm Package Compare versions

Comparing version 1.14.0 to 1.14.1

4

CHANGELOG.md

@@ -7,2 +7,6 @@ # Changelog

## v1.14.1
- fix: Use `WebpackPluginInstance` type for Webpack v4 and v5 compatibility (#259)
## v1.14.0

@@ -9,0 +13,0 @@

4

index.d.ts

@@ -1,2 +0,2 @@

import { Plugin, Compiler } from 'webpack';
import { Compiler, WebpackPluginInstance } from 'webpack';

@@ -195,3 +195,3 @@ export interface SentryCliPluginOptions {

declare class SentryCliPlugin extends Plugin {
declare class SentryCliPlugin implements WebpackPluginInstance {
constructor(options: SentryCliPluginOptions);

@@ -198,0 +198,0 @@

@@ -11,3 +11,3 @@ {

"author": "Sentry",
"version": "1.14.0",
"version": "1.14.1",
"license": "MIT",

@@ -14,0 +14,0 @@ "repository": "git@github.com:getsentry/sentry-webpack-plugin.git",

@@ -67,3 +67,3 @@ <p align="center">

| project | `string` | optional | The slug of the Sentry project associated with the app. |
| authToken | `string` | optional | The authentication token to use for all communication with Sentry. Can be obtained from https://sentry.io/settings/account/api/auth-tokens/. |
| authToken | `string` | optional | The authentication token to use for all communication with Sentry. Can be obtained from https://sentry.io/settings/account/api/auth-tokens/. Required scopes: `project:releases` (and `org:read` if `setCommits` option is used). |
| url | `string` | optional | The base URL of your Sentry instance. Defaults to https://sentry.io/, which is the correct value for SAAS customers. |

@@ -79,3 +79,3 @@ | vcsRemote | `string` | optional | The name of the remote in the version control system. Defaults to `origin`. |

| urlPrefix | `string` | optional | URL prefix to add to the beginning of all filenames. Defaults to `~/` but you might want to set this to the full URL. This is also useful if your files are stored in a sub folder. eg: `url-prefix '~/static/js'`. |
| urlSuffix | `string` | optional | URL suffix to add to the end of all filenamess. Useful for appending query parameters. |
| urlSuffix | `string` | optional | URL suffix to add to the end of all filenames. Useful for appending query parameters. |
| validate | `boolean` | optional | When `true`, attempts source map validation before upload if rewriting is not enabled. It will spot a variety of issues with source maps and cancel the upload if any are found. Defaults to `false` to prevent false positives canceling upload. |

@@ -82,0 +82,0 @@ | stripPrefix | `array` | optional | When paired with `rewrite`, will remove a prefix from uploaded filenames. Useful for removing a path that is build-machine-specific. |

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc