-
Notifications
You must be signed in to change notification settings - Fork 4
Installation
Clément Creusat edited this page Apr 15, 2024
·
2 revisions
To configure this monorepo, there are some prerequisites:
- Clone the repository
- Install
pnpmglobally if you don't have it : https://pnpm.io/installation - Check if
pnpmis correctly installed:
pnpm -v
> 8.15.6
- Install
nvmif you don't have it: https://github.com/nvm-sh/nvm - Add Node 16, 18 and 20 with
nvm
nvm install 16
nvm install 18
nvm install 20
- For now, use Node 18
nvm use 18
- You can use
nxwithpnpmor install it globally: https://nx.dev/getting-started/installation#installing-nx-globally
- Run
pnpm install
- Lint and Build all librairies for the first time:
nx run-many -t lint build --exclude docs