Update your Site
Keep your LightNet site up to date by following these steps:
- Check your dependencies by running
Terminal window npm outdated - Read the release notes on GitHub
- Update your dependencies by running
This will update your dependencies to the latest version according to the version specifiers inside
Terminal window npm updatepackage.json
. - If there are any breaking changes, you will need to update your code to match the new API. Also update the dependencies to the latest version inside
package.json
. When you are done, runnpm install
to install the new dependencies.