From fb3be7982024aed4cf141fbe3f658d8d6b0f94f5 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 18 Sep 2024 14:51:14 -0700 Subject: Update sentry sourcemaps upload (#5409) --- patches/@sentry+react-native+5.32.0.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'patches') diff --git a/patches/@sentry+react-native+5.32.0.patch b/patches/@sentry+react-native+5.32.0.patch index 2962aa44c..a5ccecc21 100644 --- a/patches/@sentry+react-native+5.32.0.patch +++ b/patches/@sentry+react-native+5.32.0.patch @@ -13,3 +13,24 @@ index 7e0b4cd..177454c 100644 } //# sourceMappingURL=ignorerequirecyclelogs.js.map \ No newline at end of file +diff --git a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js +index 0f244f2..ae7dfb3 100755 +--- a/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js ++++ b/node_modules/@sentry/react-native/scripts/expo-upload-sourcemaps.js +@@ -174,6 +174,7 @@ if (!outputDir) { + process.exit(1); + } + ++const otherArgs = process.argv.slice(3); + const files = getAssetPathsSync(outputDir); + const groupedAssets = groupAssets(files); + +@@ -195,7 +196,7 @@ for (const [assetGroupName, assets] of Object.entries(groupedAssets)) { + + const isHermes = assets.find(asset => asset.endsWith('.hbc')); + const windowsCallback = process.platform === "win32" ? 'node ' : ''; +- execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')}`, { ++ execSync(`${windowsCallback}${sentryCliBin} sourcemaps upload ${isHermes ? '--debug-id-reference' : ''} ${assets.join(' ')} ${otherArgs.join(' ')}`, { + env: { + ...process.env, + [SENTRY_PROJECT]: sentryProject, -- cgit 1.4.1