@sentry/bundler-plugin-core
Advanced tools
Comparing version 3.1.2 to 3.2.0
@@ -21,3 +21,3 @@ import { Logger } from "./sentry/logger"; | ||
rewriteSources?: ((source: string, map: any) => string) | undefined; | ||
filesToDeleteAfterUpload?: string | string[] | undefined; | ||
filesToDeleteAfterUpload?: string | string[] | Promise<string | string[] | undefined> | undefined; | ||
} | undefined; | ||
@@ -24,0 +24,0 @@ release: { |
@@ -10,3 +10,3 @@ import { UnpluginOptions } from "unplugin"; | ||
sentryClient: Client; | ||
filesToDeleteAfterUpload: string | string[] | undefined; | ||
filesToDeleteAfterUpload: string | string[] | Promise<string | string[] | undefined> | undefined; | ||
logger: Logger; | ||
@@ -13,0 +13,0 @@ } |
@@ -120,5 +120,9 @@ export interface Options { | ||
* | ||
* Note: If you pass in a promise that resolves to a string or array, the plugin will await the promise and use | ||
* the resolved value globs. This is useful if you need to dynamically determine the files to delete. Some | ||
* higher-level Sentry SDKs or options use this feature (e.g. SvelteKit). | ||
* | ||
* Use the `debug` option to print information about which files end up being deleted. | ||
*/ | ||
filesToDeleteAfterUpload?: string | string[]; | ||
filesToDeleteAfterUpload?: string | string[] | Promise<string | string[] | undefined>; | ||
}; | ||
@@ -125,0 +129,0 @@ /** |
{ | ||
"name": "@sentry/bundler-plugin-core", | ||
"version": "3.1.2", | ||
"version": "3.2.0", | ||
"description": "Sentry Bundler Plugin Core", | ||
@@ -56,3 +56,3 @@ "repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git", | ||
"@babel/core": "^7.18.5", | ||
"@sentry/babel-plugin-component-annotate": "3.1.2", | ||
"@sentry/babel-plugin-component-annotate": "3.2.0", | ||
"@sentry/cli": "2.41.1", | ||
@@ -72,4 +72,4 @@ "dotenv": "^16.3.1", | ||
"@rollup/plugin-replace": "^4.0.0", | ||
"@sentry-internal/eslint-config": "3.1.2", | ||
"@sentry-internal/sentry-bundler-plugin-tsconfig": "3.1.2", | ||
"@sentry-internal/eslint-config": "3.2.0", | ||
"@sentry-internal/sentry-bundler-plugin-tsconfig": "3.2.0", | ||
"@sentry/core": "8.30.0", | ||
@@ -76,0 +76,0 @@ "@sentry/types": "8.30.0", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1915486
18084
+ Added@sentry/babel-plugin-component-annotate@3.2.0(transitive)
- Removed@sentry/babel-plugin-component-annotate@3.1.2(transitive)