首页 新闻 会员 周边 捐助

修改 package.json 的 peerDependencies 中包的版本后如何更新 package.lock.json

0
悬赏园豆:30 [已解决问题] 解决于 2024-12-15 22:26

package.json 中 peerDependencies 部分

"peerDependencies": {
  "@angular/common": "17.x",
  "@angular/core": "17.x"
}

更新为

"peerDependencies": {
  "@angular/common": "19.x",
  "@angular/core": "19.x"
}

运行 npm i 命令并没有更新 package.lock.json

dudu的主页 dudu | 高人七级 | 园豆:28776
提问于:2024-12-15 22:14
< > 人人可用的开源BI工具
分享
最佳答案
0

通过 npm audit fix 命令解决了

dudu | 高人七级 |园豆:28776 | 2024-12-15 22:26
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册
Top