mirror of
https://github.com/KevinMidboe/dotfiles.git
synced 2025-10-29 09:30:20 +00:00
15 lines
218 B
Bash
15 lines
218 B
Bash
# install latest node & yarn
|
|
brew install node yarn
|
|
|
|
# install specific node versions
|
|
brew install node@20
|
|
brew install node@18
|
|
|
|
# Globally install with npm
|
|
|
|
packages=(
|
|
prettier
|
|
)
|
|
|
|
yarn global add "${packages[@]}"
|