Ga naar inhoud

πŸ‡¬πŸ‡§ Yarn

Using yarn install returns a Node error

These errors are caused by the conflicting versions of Node and Yarn while running the command.

Fixing the issue:

Check which versions are installed.

Terminal window
node -v

Install lower version.

Terminal window
brew install node@10

Switch to installed version.

Terminal window
brew unlink node
brew link node@10