Upgrading
Upgrading Nuxt.js is quick, but more involved than updating your package.json
Getting Started
- Check the release notes for the version you wish to upgrade to to see if there are any additional instructions for that particular release.
- Update the version specified for the
nuxt
package in yourpackage.json
file.After this step instructions vary depending upon whether you are using Yarn or NPM. Yarn is the preferred package manager for working with Nuxt as it is the development tool which tests have been written against.
Yarn
- remove
yarn.lock
file - remove
node_modules
directory - Run the
yarn
command - After installation has completed and you have run your tests consider upgrading other dependencies as well. The
yarn outdated
command can be used.
NPM
- remove
package-lock.json
file - remove
node_modules
directory - Run the
npm install
command - After installation has completed and you have run your tests consider upgrading other dependencies as well. The
npm outdated
command can be used.