You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.debug("Source map upload was disabled. Will not upload sourcemaps.");
312
-
}elseif(!options.release.name){
310
+
if(!options.release.name){
313
311
logger.warn(
314
312
"No release name provided. Will not create release. Please set the `release.name` option to identify your release."
315
313
);
@@ -353,9 +351,11 @@ export function sentryUnpluginFactory({
353
351
);
354
352
}
355
353
356
-
plugins.push(debugIdInjectionPlugin(logger));
357
-
358
-
if(!options.authToken){
354
+
if(options.sourcemaps?.disable){
355
+
logger.debug(
356
+
"Source map upload was disabled. Will not upload sourcemaps using debug ID process."
357
+
);
358
+
}elseif(!options.authToken){
359
359
logger.warn(
360
360
"No auth token provided. Will not upload source maps. Please set the `authToken` option. You can find information on how to generate a Sentry auth token here: https://docs.sentry.io/api/auth/"
361
361
);
@@ -369,6 +369,7 @@ export function sentryUnpluginFactory({
0 commit comments