如何更新 Nuxt.js 到最新版本
How to update Nuxt.js to the latest version
我在我的项目中使用 Nuxt.js 1.2,但我想将它更新到最新版本。怎么做?更新版本需要注意什么?
简单地运行:yarn upgrade nuxt@^2.3.2
如前所述here:
Please note that for upgrading Nuxt.js just changing version inside
package.json
is not enough. Please use yarn upgrade or npm upgrade so
that the final directory structure of node_modules
will be correct. In
case of problems clean up node_modules
and
yarn.lock/package-lock.json
.
我在我的项目中使用 Nuxt.js 1.2,但我想将它更新到最新版本。怎么做?更新版本需要注意什么?
简单地运行:yarn upgrade nuxt@^2.3.2
如前所述here:
Please note that for upgrading Nuxt.js just changing version inside
package.json
is not enough. Please use yarn upgrade or npm upgrade so that the final directory structure ofnode_modules
will be correct. In case of problems clean upnode_modules
andyarn.lock/package-lock.json
.