Skip to content

Instantly share code, notes, and snippets.

@nireno
Created May 31, 2020 01:56
Show Gist options
  • Save nireno/6629754faec6eaa1dd278bacdb5726b4 to your computer and use it in GitHub Desktop.
Save nireno/6629754faec6eaa1dd278bacdb5726b4 to your computer and use it in GitHub Desktop.
Update all outdated npm packages to @latest
# /bin/bash
npm outdated \
| tail --lines=+2 \
| awk '{print $1"@latest"}' \
| xargs -d '\n' npm install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment