清除缓存
- 清除全部缓存
yarn cache clean
- 清除指定包缓存
这里以lodash包为例
yarn cache clean lodash
源设置
yarn config set registry https://registry.npmmirror.com
代理
查看代理
yarn config get proxy
yarn config get https-proxy
设置代理
个人一般直接用第一个,没有设置第二个,暂不清楚第二个设置的含义,所以也没有设置,也能够使用
yarn config set proxy http://127.0.0.1:7890
yarn confit set https-proxy http://127.0.0.1:7890
取消代理
yarn config delete proxy
yarn config delete https-proxy