赞
踩
背景:我们在发布共有 npm 包时,npm 官方镜像发布成功,但是淘宝源下载却没有找到刚发布的版本,下面是我遇到问题心路历程
npm publish
发布 npm 包成功,此时我们发布的版本是 V0.0.50
npm view [xxx_包名] versions
正常查询,成功查到版本
pnpm update [xxx_包名]@0.0.50
此时报错了,报错信息告诉我们最新的版本是 0.0.49, 并没有你要更新的版本号的包,但是我们明明发布了最新,为什么会查不到
PS E:\project> pnpm update @xxx/components@0.0.50
ERR_PNPM_NO_MATCHING_VERSION No matching version found for @xxx/components@0.0.50
This error happened while installing a direct dependency of E:\project
The latest release of @xxx/components is "0.0.49".
If you need the full list of all 47 published versions run "$ pnpm view @xxx/components versions".
Progress: resolved 38, reused 38, downloaded 0, added 0
原因:我们发布出去的包是到 npm 官方库,淘宝源的镜像库可能没有实时同步或者更新,我们可以通过以下命令查看,确实查不到刚发布的最新依赖包
pnpm view [xxx_包名] version
示例:图下
没有对应版本
更新后展示出对应版本
近期淘宝的 npm 镜像源证书过期,导致项目在装依赖的时候发生问题。
解决问题的办法,就是将旧的镜像源切换为新的镜像源。
//查看当前源
npm config get registry
//删除源
npm config delete registry
//设置源
npm config set registry https://registry.npmmirror.com/
有疑问的同学可以私信我、对帮助到同学欢迎大家收藏评论。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。