File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 6161 - run : corepack enable
6262 - uses : actions/setup-node@v4
6363 with :
64- node-version-file : ' .node-version '
64+ node-version-file : ' .nvmrc '
6565 cache : ' yarn'
6666 - run : yarn install
6767 - run : yarn build
File renamed without changes.
Original file line number Diff line number Diff line change @@ -802,8 +802,23 @@ https://pmndrs.github.io/drei
802802
803803### INSTALL
804804
805+ Pre-requisites:
806+
807+ - Install [ nvm] ( https://github.com/nvm-sh/nvm ) , then:
808+ ``` sh
809+ $ nvm install
810+ $ nvm use
811+ $ node -v # make sure your version satisfies package.json#engines.node
812+ ```
813+ nb: if you want this node version to be your default nvm's one: ` nvm alias default node `
814+ - Install yarn, with:
815+ ``` sh
816+ $ corepack enable
817+ $ corepack prepare --activate # it reads "packageManager"
818+ $ yarn -v # make sure your version satisfies package.json#engines.yarn
819+ ```
820+
805821``` sh
806- $ corepack enable
807822$ yarn install
808823```
809824
You can’t perform that action at this time.
0 commit comments