diff options
author | Hailey <me@haileyok.com> | 2024-09-18 14:51:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 14:51:14 -0700 |
commit | fb3be7982024aed4cf141fbe3f658d8d6b0f94f5 (patch) | |
tree | 52efccfc910f8dd2de508cd1e515f476671f814c /patches | |
parent | 6c8ef696549c3c08d39166e5620c74e6cfea173a (diff) | |
download | voidsky-fb3be7982024aed4cf141fbe3f658d8d6b0f94f5.tar.zst |
Update sentry sourcemaps upload (#5409)
Diffstat (limited to 'patches')
-rw-r--r-- | patches/@sentry+react-native+5.32.0.patch | 21 |
1 files changed, 21 insertions, 0 deletions
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, |