We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2fe96 commit 61106acCopy full SHA for 61106ac
scripts/react-native-xcode.sh
@@ -129,7 +129,7 @@ fi
129
130
PACKAGER_SOURCEMAP_FILE=
131
if [[ $EMIT_SOURCEMAP == true ]]; then
132
- if [[ $USE_HERMES == true ]]; then
+ if [[ $USE_HERMES != false ]]; then
133
PACKAGER_SOURCEMAP_FILE="$CONFIGURATION_BUILD_DIR/$(basename $SOURCEMAP_FILE)"
134
else
135
PACKAGER_SOURCEMAP_FILE="$SOURCEMAP_FILE"
@@ -138,7 +138,7 @@ if [[ $EMIT_SOURCEMAP == true ]]; then
138
fi
139
140
# Hermes doesn't require JS minification.
141
-if [[ $USE_HERMES == true && $DEV == false ]]; then
+if [[ $USE_HERMES != false && $DEV == false ]]; then
142
EXTRA_ARGS="$EXTRA_ARGS --minify false"
143
144
0 commit comments