yarn切换到yarn 2 (berry),摆脱node_modules
注:目前yarn主分支依然是1代,也没有常规方式直接安装2代,yarn的理念是,想体验2代,只能在具体项目中体验,无法全局安装【应该是暂时】。
注:项目安装yarn2 时,需要访问 raw.githubusercontent.com,因此我们需要先解决污染问题。
⒈进入这个网址:https://www.ipaddress.com/ 查找raw.githubusercontent.com的真实IP。
⒉打开文件:C:/Windows/System32/drivers/etc/hosts,修改hosts文件,在最后添加199.232.68.133 raw.githubusercontent.com。
⒊刷新本机DNS解析。
1 ipconfig /flushdns
⒋在项目中执行命令
yarn set version berry
⒌设置yarn
库的镜像加速服务器以加快整个下载过程
1 yarn config set npmRegistryServer https://registry.npmmirror.com
参考链接: 1.https://yarnpkg.com/getting-started/migration
2.https://segmentfault.com/a/1190000040520326?utm_source=sf-similar-article
3.https://blog.csdn.net/love3d/article/details/110876339
4.https://www.jianshu.com/p/cd3c316325cb