windows mac 环境 yarn的安装和使用
yarn安装
cmd
npm install -g yarn
yarn设置代理
cmd
yarn config set registry https://registry.npm.taobao.org -g
yarn官方源
cmd
yarn config set registry https://registry.yarnpkg.com
yarn使用
cmd
// 查看板本
yarn --version
// 安装指定包
yarn add xxxxxx
// 安装所有包
yarn add 或 yarn install
// 更新指定包
yarn upgrade xxxxxx
// 删除指定包
yarn remove xxxxxx
国内镜像源
cmd
yarn config set registry xxxxxx
// 淘宝镜像
https://registry.npm.taobao.org/
// 华为镜像
https://mirrors.huaweicloud.com/repository/npm/
yarn安装问题
yarn安装sass失败
设置 node-sass 地址
cmd
// 阿里源
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g
// 华为源
yarn config set sass_binary_site https://mirrors.huaweicloud.com/node-sass -g
// 安装 sass-loader node-sass
npm i sass-loader node-sass -D