gpt4 book ai didi

ios - 在为 React Native for Production 添加 sourcemap 时,在 Xcode 中的何处为我的生产构建添加 source map 命令?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:24:28 27 4
gpt4 key购买 nike

RE(没有足够的经验值来回复):“在我的生产构建包命令中,我告诉它生成一个源映射” How to add sourcemap in React Native for Production?

在 Xcode Version 7.3 beta 3 中,我转到 [My Project] > Build Phases > Bundle React Native code and images

在:导出 NODE_BINARY=节点../node_modules/react-native/packager/react-native-xcode.sh

我补充说:cd/Users/andresn/dev/[我的项目]react-native bundle --platform ios --entry-file index.ios.js --dev false --bundle-output ./ios/main.jsbundle --assets-dest ./ios --sourcemap-output ./sourcemap .js

他的意思是这样的,还是有更合适的方法?

最佳答案

我最终在 Bundle React Native code and images 中使用了以下脚本:

export NODE_BINARY=node
if [ "${CONFIGURATION}" = "Release" ]
then ../sourcemap.sh
else ../node_modules/react-native/scripts/react-native-xcode.sh
fi

然后在项目目录的根目录中,我使用以下 sourcemap.sh 脚本在 ./ios 目录中生成源映射文件:

#!/bin/bash
$NODE_BINARY ../node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file ./index.ios.js --dev false --bundle-output ./main.jsbundle --assets-dest ./ --sourcemap-output ./main.jsbundle.map

关于ios - 在为 React Native for Production 添加 sourcemap 时,在 Xcode 中的何处为我的生产构建添加 source map 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35959527/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com