问题
I just installed Yarn and I'm trying to switch from npm.
I tried to set my cache path like this, but it wasn't successful:
yarn --cache-folder /usr/local/Caches/yarn
yarn global --cache-folder /usr/local/Caches/yarn
yarn global cache --cache-folder /usr/local/Caches/yarn
yarn cache --cache-folder /usr/local/Caches/yarn
yarn config set --cache-folder /usr/local/Caches/yarn
Here is the documentation for yarn config.
回答1:
The actual command is:
yarn config set cache-folder /usr/local/Caches/yarn
(Note: no preceeding --
)
The docs for yarn cache show the various ways this can be set.
来源:https://stackoverflow.com/questions/40381112/how-do-i-set-a-custom-cache-path-for-yarn