Skip to content

Tips & Tricks

You can use pnpm link to locally test changes that you want to make to the @mvps-genesis packages.

Recommended Reading

Updating dependencies

To update dependencies, please reference: pnpm update

To update all dependencies, adhering to ranges that have been specified, you can run

Terminal
pnpm update -r

To update dependencies to the latest version (ignores the ranges), you will want to test each package update to ensure there are no issues.

Terminal
pnpm update {Package Name} --latest

Doing either of the above, you'll want to do the following:

  • Run local & build.
    • Ensure there are no errors.
  • Test Genesis as you would for any feature update.
    • Ensure there are no errors, and everything looks, and works as expected.