diff --git a/README.md b/README.md index 5a394fa..3dfe1e0 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ It will install all this tools: - docker command line completion ### Languages - The main languages I am working with are Java and Go, but here are some of the main languages you always need, on projects. + The main languages I am working with are Java and Go, but here are the main languages you always need, on projects. - **Java** Install the last version of the `openJDK` JVM. @@ -155,7 +155,7 @@ It will install all this tools: - **Go / Golang** Install the last `go` version and set `GOPATH` into your shell profile file. - **NodeJS** - Install `nvm` and the last version of `nodejs`. + Install `nvm` and the last version of `nodejs` + `yarn` for dependencies management. - **Python** Install `python` and `pip` so you are ready to go. - **Terraform** diff --git a/src/mac-dev-setup.sh b/src/mac-dev-setup.sh index f5ee30c..8e9f3dc 100755 --- a/src/mac-dev-setup.sh +++ b/src/mac-dev-setup.sh @@ -118,6 +118,8 @@ nvm install node echo '[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm' echo '[ -s "/usr/local/opt/nvm/etc/bash_completion.d/nvm" ] && . "/usr/local/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion' }>>$MAC_SETUP_PROFILE +brew install yarn # Dependencies management for node + ## Java brew cask install java