How to migrate from yarn to pnpm
Since version 1.70.0, SnailyCAD uses pnpm instead of yarn.
This is because pnpm is faster and uses less disk space.
How to migrate
- Pull the latest changes:
git pull origin main
- Install pnpm, follow our guides for either:
- Remove the
node_modules folder and yarn.lock file if present.
- Install the dependencies with
pnpm install.
- Get yourself up to update with the latest commands by reading the documentation.