Reference
Operations
Create a new codebase
- 
Using the latest snapshot release:
pnpm create mud@main <directory> - 
Using the latest pre-release:
pnpm create mud@next <directory>Modify the codebase version
 - 
Switch to the latest snapshot release:
pnpm mud set-version --tag main && pnpm install - 
Switch to the latest pre-release:
pnpm mud set-version --tag next && pnpm install - 
Switch to a specific commit (opens in a new tab):
pnpm mud set-version --commit <hash> && pnpm install