从终端运行React Native iOS版本构建

前端之家收集整理的这篇文章主要介绍了从终端运行React Native iOS版本构建前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图直接从终端运行发布版本,我没有找到一个选项来做到这一点.

从XCode开始,需要做的是:

Product -> Scheme -> Edit Scheme (cmd + <),make sure you’re in the
Run tab from the side,and set the Build Configuration dropdown to
release.

http://facebook.github.io/react-native/docs/running-on-device-ios.html#building-your-app-for-production

react-native-cli有什么选择可以做同样的事情吗?像react-native run-ios -configuration Release这样的东西?

我的目标是生成一个不需要服务器运行的构建,例如提供给QA团队.

我对React Native项目做了PR以允许此功能. PR可以在这里查看: https://github.com/facebook/react-native/commit/ca7cbdee858e84c4a74a2d9c7be151f5cfdcfbfe

因此,在将来,要从终端运行发布版本,您只需键入以下命令:react-native run-ios –conflease Release

原文链接:https://www.f2er.com/react/300963.html

猜你在找的React相关文章