When you don't pass a package name to the "react-native link", it will try to look for all packages to link from your node_modules.
This is causing us a lot of issues, such as linking wrong packages or the ones that someone doesn't want to link (e.g. decided to use a different way of linking that is out of scope for this command).
We should simply stick to requiring package name.
When you don't pass a package name to the "react-native link", it will try to look for all packages to link from your node_modules.
This is causing us a lot of issues, such as linking wrong packages or the ones that someone doesn't want to link (e.g. decided to use a different way of linking that is out of scope for this command).
We should simply stick to requiring package name.