我必须禁用nvm
并通过brew安装node-6.0.0才能在我的iOS设备上使用9.3.1获得一个全新的,未更改的RN应用程序。
无论我做什么,都不会重新创建mainjs.bundle
。我将我的架构从Debug
切换到Release
并更改AppDelegate.m,以便从捆绑包而不是服务器读取JS。但是在我编译应用程序的那一刻,我收到以下错误:
+ DEST=/Users/foobar/Library/Developer/Xcode/DerivedData/TestSome-fpsorufynyrzmuceyzbnallqkbrd/Build/Products/Release-iphonesimulator/TestSome.app
+ node /Users/foobar/tmp/reacttest/TestSome/node_modules/react-native/local-cli/cli.js bundle --entry-file index.ios.js --platform ios --dev false --bundle-output /Users/foobar/Library/Developer/Xcode/DerivedData/TestSome-fpsorufynyrzmuceyzbnallqkbrd/Build/Products/Release-iphonesimulator/TestSome.app/main.jsbundle --assets-dest /Users/foobar/Library/Developer/Xcode/DerivedData/TestSome-fpsorufynyrzmuceyzbnallqkbrd/Build/Products/Release-iphonesimulator/TestSome.app
/Users/foobar/tmp/reacttest/TestSome/node_modules/react-native/local-cli/cli.js:123
class CreateSuppressingTerminalAdapter extends TerminalAdapter {
^^^^^
SyntaxError: Unexpected reserved word
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
Command /bin/sh failed with exit code 1
对我而言,似乎6to2的翻译由于某种原因失败了。如果我将该课程注释掉并删除它,那么就会出现下一个错误,在某处抱怨未知关键字const
。
如果我通过以下方式手动构建mainjs.bundle:
react-native bundle --dev false --minify --entry-file ./index.ios.js --platform ios --bundle-output ios/main.jsbundle
我可以在我的设备上安装该应用。但是图像I require()
等其他资源未捆绑在一起。
谁能告诉我,我可以在哪里找到问题?
答案 0 :(得分:0)
尝试转到node_modules/react-native/packager/react-native-xcode.sh
并注释掉这一行:
if [[ "$PLATFORM_NAME" = "iphonesimulator" ]]; then
echo "Skipping bundling for Simulator platform"
exit 0;
fi
这是我能够让它发挥作用的唯一方法。
答案 1 :(得分:0)
对于有这个问题的其他人来说,这与Xcode运行旧版本的节点有关,而不是最新版本。
TL / DR :添加以下行:
#nvm
[[ -s $HOME/.nvm/nvm.sh ]] && . $HOME/.nvm/nvm.sh # This loads NVM
到我的~/.bash_profile'
并重新启动Xcode修复了问题
长版:
我的nvm安装搞砸了,Xcode正在使用节点版本v0.12.7
当我尝试在nvm use default
中运行Xcode Project-->Build Phases--> Bundle React Native code and images
时,我注意到找不到nvm
。
因此,将上述行添加到我的bash_profile
修复了问题。
我在OSX上使用react-native 26
。