Typically, I fetch packages from the internal server by using the command:
yarn config set registry http://custom-packages-server.com
However, for a new project, I want to switch back to the default registry without affecting other projects. If I try changing the registry with this command:
yarn config set registry https://registry.yarnpkg.com
it seems like it will update the global registry value for all projects, causing them to also pull packages from the new location.
Is there a way in yarn to override the global registry setting for just one specific project?