-
-
Save isaax2/203659c575da48543aff750e9f92dbdb to your computer and use it in GitHub Desktop.
Upgrade node with nvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
OLD_VERSION=10.15.3 | |
NEW_VERSION=10.16.3 | |
nvm install $NEW_VERSION --reinstall-packages-from=$OLD_VERSION | |
nvm alias default $NEW_VERSION | |
nvm uninstall $OLD_VERSION |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment