反应本安装与链接之间有什么区别?



查看有关这两个类似命令的文档:

$ react-native link --help
react-native link [options] [packageName]
  links all native dependencies (updates native build files)

$ react-native install  --help
  react-native install [options] <packageName>
  install and link native dependencies

如果我们指定packageName,我不明白区别。那么, react-native link SOMEPACKAGEreact-native install SOMEPACKAGE之间有什么区别?

前者只是链接本机依赖项,后者安装和链接。第二个示例是npm install Fooreact-native link Foo的短手。

相关内容

  • 没有找到相关文章

最新更新