Skip to content

Commit 95942c2

Browse files
authored
docs: fix guide on enabling source map generation for iOS (facebook#4832)
1 parent bdf8f1a commit 95942c2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.77/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.78/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.79/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.80/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.81/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

website/versioned_docs/version-0.82/debugging-release-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ To enable source map generation:
6161
- Above the other exports, add a `SOURCEMAP_FILE` entry with the desired output path.
6262

6363
```diff
64-
+ SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map";
64+
+ export SOURCEMAP_FILE="$(pwd)/../main.jsbundle.map"
6565
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
6666
```
6767

0 commit comments

Comments
 (0)