rollbar / rollbar-react-native

Crash and error reporting for React Native using Rollbar
https://docs.rollbar.com/docs/react-native
62 stars 37 forks source link

Add rewrite patterns for hermes to documentation #188

Open Stas-Buzunko opened 7 months ago

Stas-Buzunko commented 7 months ago

Rollbar v0.9.3

There are at least two open issues related to sourcemaps problems associated with Hermes. So, it might be worth adding to the documentation (assuming these patterns might have been added to v1).

Issues: https://github.com/rollbar/rollbar-react-native/issues/124 https://github.com/rollbar/rollbar-react-native/issues/151#issuecomment-954819058

If anyone faces these problems, here are the patterns that worked for me:

rewriteFilenamePatterns: [
    Platform.OS === 'ios' ? '([^/]*)$' : '^address at (.*)$'
]