How to make both npm and yarn use private registries
npm login --registry <YOUR_PRIVATE_REGISTRY_URL>
yarn config delete registry
then don't trust the autogenerated ~/.npmrc
configuration and modify it like this:
always-auth=true
registry=<YOUR_PRIVATE_REGISTRY_URL>
_authToken=NpmToken.<YOUR_TOKEN>
๐ป Cheers!