update dotfiles 11.2024

This commit is contained in:
2024-11-06 13:18:05 +01:00
parent 5b47968d93
commit c1e4702866
29 changed files with 1312 additions and 443 deletions

14
install/node.sh Normal file
View File

@@ -0,0 +1,14 @@
# 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 install "${packages[@]}"