安装npm-check-updates
1 | npm install -g npm-check-updates |
查询是否后最新版本
在package.json所在的目录中,打开cmd,注意打开的是cmd,git-bash可能无效,输入:1
npm-check-updates
或者使用该命令的简写:1
ncu
该命令插件会去npm官网查询是否有最新版本,如果有新版本的话,显示效果如下:1
2
3
4
5
6
7
8
9
10
11E:\Blog\exam>ncu
Checking E:\Blog\exam\package.json
[====================] 15/15 100%
hexo ^3.9.0 → ^4.1.1
hexo-generator-archive ^0.1.5 → ^1.0.0
hexo-generator-category ^0.1.3 → ^1.0.0
hexo-generator-tag ^0.2.0 → ^1.0.0
hexo-renderer-ejs ^0.3.1 → ^1.0.0
hexo-renderer-stylus ^0.3.3 → ^1.1.0
hexo-server ^0.3.3 → ^1.0.0
Run ncu -u to upgrade package.json
更新依赖文件配置
按提示输入:1
ncu -u
更新依赖配置文件即可.1
2
3
4
5
6
7
8
9
10
11E:\Blog\exam>ncu -u
Upgrading E:\Blog\exam\package.json
[====================] 15/15 100%
hexo ^3.9.0 → ^4.1.1
hexo-generator-archive ^0.1.5 → ^1.0.0
hexo-generator-category ^0.1.3 → ^1.0.0
hexo-generator-tag ^0.2.0 → ^1.0.0
hexo-renderer-ejs ^0.3.1 → ^1.0.0
hexo-renderer-stylus ^0.3.3 → ^1.1.0
hexo-server ^0.3.3 → ^1.0.0
Run npm install to install new versions.
更新软件
然后按提示输入:1
npm install
更新软件版本即可
更新其他
1 | E:\Blog\exam>npm install |
注意错误信息:1
npm WARN deprecated core-js@1.2.7: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.
更新core-js@1.2.7到core-js@3:1
npm install --save core-js@^3
参考资料
https://www.jianshu.com/p/f192d11b60a2
https://www.jianshu.com/p/ce9a46ae3a03
https://blog.csdn.net/Mweb_demo/article/details/100583577