当前位置:  开发笔记 > 编程语言 > 正文

使用`npm update`时如何更新package.json中的所有软件包版本号?

如何解决《使用`npmupdate`时如何更新package.json中的所有软件包版本号?》经验,为你挑选了0个好方法。

当我使用时npm update,我可以更新所有软件包,但package.json中的软件包版本号不变,在package.json中,具有devDependenciesdependencies,如下所示:

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "jquery": "^1.11.2"
  },
  "devDependencies": {
    "lodash": "^2.4.1"
  }
}

如何使用一行命令更新所有软件包和numbner中的所有软件包,devDependencies并且dependencies也会更新。

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有