npm_update_all_global() {
npm list -g --json | jq ".dependencies | keys[]" -r | while read line; do
npm -g update "$line"
done
}
brew_update_all() {
brew update && brew upgrade
}
heroku_update_all() {
heroku update
}
sfdx_update_all() {
sfdx update
}
lekkim_update_all_cli() {
npm_update_all_global
brew_update_all
heroku_update_all
sfdx_update_all
}