我尝试从源代码构建针对iOS的react-native,关于official tutoral:
exec('npm install --save react-native', function(e, stdout, stderr) {
到
exec('npm install MY_ALIAS_RN', function(e, stdout, stderr) {
3.执行react-native init AwesomeProject
安装了所有内容,但是当我尝试运行react-native run-ios
时,我看到了
next message
你能帮忙吗?
答案 0 :(得分:1)
正如错误消息所述,这可能与Github Issue #4968有关您是否已尝试过以下任何变通办法?
watchman watch-del-all
node_modules
文件夹:rm -rf node_modules && npm install
rm -fr $TMPDIR/react-*
或npm start -- --reset-cache