从源头构建

时间:2016-02-17 20:39:54

标签: react-native

我尝试从源代码构建针对iOS的react-native,关于official tutoral

  1. 为本地react-native主分支创建别名
  2. 更改了行(~191)
  3. 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

    你能帮忙吗?

1 个答案:

答案 0 :(得分:1)

正如错误消息所述,这可能与Github Issue #4968有关您是否已尝试过以下任何变通办法?

  1. 清除守望者手表:watchman watch-del-all
  2. 删除node_modules文件夹:rm -rf node_modules && npm install
  3. 重置打包程序缓存:rm -fr $TMPDIR/react-*npm start -- --reset-cache
  4. 从头开始重新创建项目