looking at the documentation about these two similar commands:
$ react-native link --help
react-native link [options] [packageName]
links all native dependencies (updates native build files)
and
$ react-native install --help
react-native install [options] <packageName>
install and link native dependencies
I do not understand the difference if we specify the packageName
. So, what is the difference between react-native link SOMEPACKAGE
and react-native install SOMEPACKAGE
?