We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae807c6 commit bc377f2Copy full SHA for bc377f2
packages/bundler-plugin-core/src/index.ts
@@ -332,7 +332,7 @@ export function sentryUnpluginFactory({
332
plugins.push(
333
fileDeletionPlugin({
334
deleteFilesUpForDeletion,
335
- handleRecoverableError: handleRecoverableError,
+ handleRecoverableError,
336
sentryHub,
337
sentryClient,
338
})
packages/bundler-plugin-core/src/plugins/sourcemap-deletion.ts
@@ -17,7 +17,7 @@ export function fileDeletionPlugin({
17
}: FileDeletionPlugin): UnpluginOptions {
18
return {
19
name: "sentry-file-deletion-plugin",
20
- async buildEnd() {
+ async writeBundle() {
21
try {
22
await deleteFilesUpForDeletion();
23
} catch (e) {
0 commit comments