We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
filesToDeleteAfterUpload
1 parent 48f461f commit 9ce8ec8Copy full SHA for 9ce8ec8
packages/core/src/build-time-plugins/buildTimeOptionsBase.ts
@@ -211,6 +211,14 @@ interface SourceMapsOptions {
211
* @default []
212
*/
213
ignore?: string | string[];
214
+
215
+ /**
216
+ * A glob or an array of globs that specifies the build artifacts that should be deleted after the artifact
217
+ * upload to Sentry has been completed.
218
+ *
219
+ * The globbing patterns must follow the implementation of the `glob` package: https://www.npmjs.com/package/glob#glob-primer
220
+ */
221
+ filesToDeleteAfterUpload?: string | Array<string>;
222
}
223
224
interface ReleaseOptions {
0 commit comments