云效流水线发布-node.js构建失败问题
我看你registry源地址都是官方源,可以这样解决试试
1. 本地配置最新的镜像源打开vscode终端输入下面命令
yarn config set registry https://registry.npmmirror.com/
npm config set registry https://registry.npmmirror.com/
yarn config list
2. 重新提交yarn.lock删除node_modules文件夹和yarn.lock文件,再重新安装依赖
yarn install
安装完成后,git提交yarn.lock
2. 云效的镜像源与本地镜像源保持一致两者必须一致,你图片的报错很有可能是因为不一致造成的
yarn config set registry https://registry.npmmirror.com/
npm config set registry https://registry.npmmirror.com/
yarn config list
yarn install
yarn run build:test
希望对你有帮助
赞0
踩0