Last active
May 19, 2023 17:02
-
-
Save lbfalvy/8e1c6f81626a110f8a6e8df1285ae0e1 to your computer and use it in GitHub Desktop.
Update all NPM packages to the latest version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
npm install `npm outdated | tail -n +2 | awk '{ print $1 "@latest" }' | tr '\n' ' '` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment