diff options
author | bnewbold <bnewbold@robocracy.org> | 2025-02-19 16:12:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-19 16:12:51 -0800 |
commit | f8f88878dc8502045cdac5dcad7995575b45a87d (patch) | |
tree | d00732b80b34d19a6dc136dd4e5692a3e9403040 /Makefile | |
parent | 8f63cb86b1c7322550e994bd7601e157c549ef98 (diff) | |
download | voidsky-f8f88878dc8502045cdac5dcad7995575b45a87d.tar.zst |
makefile: bump nvm to use node 20 (#7324)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 5ed24e6ad..564131423 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,6 @@ deps: ## Installs dependent libs using 'yarn install' .PHONY: nvm-setup nvm-setup: ## Use NVM to install and activate node+yarn - nvm install 18 - nvm use 18 + nvm install 20 + nvm use 20 npm install --global yarn |