No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
Helps to upload sourcemaps to Bugsnag
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

bugsnag_sourcemaps_upload plugin

fastlane Plugin Badge Gem Version

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-bugsnag_sourcemaps_upload, add it to your project by running:

fastlane add_plugin bugsnag_sourcemaps_upload

About bugsnag_sourcemaps_upload

Helps to generate and upload React Native sourcemaps to Bugsnag

Example

# Generate and upload soucemaps
bugsnag_sourcemaps_upload(
  api_key: 'YOUR_BUGSNAG_API_KEY',
  app_version: '1.0.0'
)

# Uploading Hermes generated soucemaps
bugsnag_sourcemaps_upload(
  api_key: 'YOUR_BUGSNAG_API_KEY',
  app_version: '1.0.0',
  generate_sourcemaps: false,
  platform: 'android',
  sourcemaps_dir: 'android/app/build/generated',
  sourcemap: 'sourcemaps/react/release/index.android.bundle.map',
  bundle: 'assets/react/release/index.android.bundle'
)

Available options

Option Description Environment variable Default value
api_key* API key BUGSNAG_API_KEY
app_version Target app version BUGSNAG_SOURCEMAPS_APP_VERSION
code_bundle_id CodePush bundle ID BUGSNAG_SOURCEMAPS_CODE_BUNDLE
platform Target platform BUGSNAG_SOURCEMAPS_PLATFORM ios
sourcemaps_dir Sourcemaps directory BUGSNAG_SOURCEMAPS_DIR /tmp
sourcemap Override path to sourcemaps(relative path to sourcemaps_dir) BUGSNAG_SOURCEMAPS_NAME platform.bundle.map
bundle Override path to minified file(relative path to sourcemaps_dir) BUGSNAG_SOURCEMAPS_BUNDLE_NAME platform.bundle
minified_url Override minified url BUGSNAG_SOURCEMAPS_MINIFIED_URL index.android.bundle or main.jsbundle
overwrite Overwrite sourcemaps in Bugsnag BUGSNAG_SOURCEMAPS_OVERWRITE true
strip Strip root BUGSNAG_SOURCEMAPS_STRIP_PROJECT_ROOT true
wildcard_prefix Add wildcard prefix BUGSNAG_SOURCEMAPS_WILDCARD_PREFIX false
generate_sourcemaps Generate sourcemaps using react-native bundle BUGSNAG_SOURCEMAPS_GENERATE true
upload_sources Upload source files referenced by the source map BUGSNAG_SOURCEMAPS_UPLOAD_SOURCES true
upload_modules Upload dependency files referenced by the source map BUGSNAG_SOURCEMAPS_UPLOAD_MODULES false
entry_file React-native app index file path BUGSNAG_SOURCEMAPS_ENTRY_FILE index.js
endpoint Bugsnag endpoint(when using Bugsnag On-premise) BUGSNAG_SOURCEMAPS_ENDPOINT

* - required

Run tests for this plugin

To run both the tests, and code style validation, run

rake

To automatically fix many of the styling issues, use

rubocop -a

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.