I have a local nexus server, I'd like yarn to look through it before going online, basically prefer-offline
yarn install --prefer-offline --cache-folder C:\folder\yarn-cache --preferred-cache-folder C:\folder\yarn-cache --non-interactive --no-lockfile --registry http://server/repository/npm-group
Yarn fails to find a dependency offline then fails to go online. I don't know if that can be fixed.
You can set a different registry in yarn by using the following command:
Verify that it has been set by typing the following command:
For a one-off change in registry you can use the variable
YARN_REGISTRY
like this:or
yarn config set registry http://nexus.local/repository/npm-group/
. If required by your Nexus configuration, authenticate yarn:yarn login
.Also be wary of yarn using any npm config you might have over it's own: https://github.com/yarnpkg/yarn/issues/4862