Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export SENTRY_AUTH_TOKEN=___ORG_AUTH_TOKEN___
To upload source maps for your CodePush release, use the `sourcemaps upload` command.

```bash {tabTitle:Sentry CLI}
npx sentry-cli sourcemaps upload \
npx @sentry/cli sourcemaps upload \
--debug-id-reference \
--strip-prefix /path/to/project/root \
./sourcemaps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@ SENTRY_AUTH_TOKEN=___ORG_AUTH_TOKEN___
Upload the bundle and source maps to Sentry:

```bash {tabTitle:Android}
npx sentry-cli sourcemaps upload \
npx @sentry/cli sourcemaps upload \
--debug-id-reference \
--strip-prefix /path/to/project/root \
index.android.bundle index.android.bundle.map
```

```bash {tabTitle:iOS}
npx sentry-cli sourcemaps upload \
npx @sentry/cli sourcemaps upload \
--debug-id-reference \
--strip-prefix /path/to/project/root \
main.jsbundle main.jsbundle.map
Expand Down Expand Up @@ -203,13 +203,13 @@ SENTRY_AUTH_TOKEN=___ORG_AUTH_TOKEN___
Upload the bundle and source map to Sentry:

```bash {tabTitle:Android}
npx sentry-cli sourcemaps upload \
npx @sentry/cli sourcemaps upload \
--strip-prefix /path/to/project/root \
index.android.bundle index.android.bundle.map
```

```bash {tabTitle:iOS}
npx sentry-cli sourcemaps upload \
npx @sentry/cli sourcemaps upload \
--strip-prefix /path/to/project/root \
main.jsbundle main.jsbundle.map
```
Loading