Created
December 16, 2024 13:49
-
-
Save rabelorp/6c33e09f178319ba7cd3fea40b3762aa to your computer and use it in GitHub Desktop.
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
| Doc: https://github.com/creationix/nvm#usage | |
| ----- | |
| ### Executa `nvm use` automaticamente em diretórios que contém o arquivo: `.nvmrc` | |
| Adicione o código abaixo no seu arquivo `$HOME/.zshrc`. Assim, sempre que uma aplicação tiver um arquivo `.nvmrc`, o NVM baixará a versão correspondente do Node automaticamente utilizando o comando `nvm use`. | |
| # place this after nvm initialization! | |
| ```bash | |
| autoload -U add-zsh-hook | |
| load-nvmrc() { | |
| local node_version="$(nvm version)" | |
| local nvmrc_path="$(nvm_find_nvmrc)" | |
| if [ -n "$nvmrc_path" ]; then | |
| local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")") | |
| if [ "$nvmrc_node_version" = "N/A" ]; then | |
| nvm install | |
| elif [ "$nvmrc_node_version" != "$node_version" ]; then | |
| nvm use | |
| fi | |
| elif [ "$node_version" != "$(nvm version default)" ]; then | |
| echo "Reverting to nvm default version" | |
| nvm use default | |
| fi | |
| } | |
| add-zsh-hook chpwd load-nvmrc | |
| load-nvmrc | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment