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
);
@@ -355,7 +353,11 @@ export function sentryUnpluginFactory({
355
353
356
354
plugins.push(debugIdInjectionPlugin(logger));
357
355
358
-
if(!options.authToken){
356
+
if(options.sourcemaps?.disable){
357
+
logger.debug(
358
+
"Source map upload was disabled. Will not upload sourcemaps using debug ID process."
359
+
);
360
+
}elseif(!options.authToken){
359
361
logger.warn(
360
362
"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/"
0 commit comments