Created
November 21, 2024 03:53
-
-
Save 9oelM/32cd5c4cf7a0c6c05acc6795d2d61d49 to your computer and use it in GitHub Desktop.
Report outdated npm deps except those specified
This file contains 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 | |
set -euv | |
# Get outdated dependencies | |
result=$(npm outdated | tail -n +2 | awk '{print $1}') | |
# Exit early if there are no outdated dependencies | |
if [ -z "$result" ]; then | |
echo "No outdated dependencies found." | |
exit 0 | |
fi | |
# Ignore list for specific packages | |
ignore_list=( | |
"^@eslint/js$" | |
"^eslint$" | |
"^ethers$" | |
) | |
# Filter out ignored dependencies | |
for i in "${ignore_list[@]}"; do | |
result=$(echo "$result" | grep -v -E "$i" || true) | |
done | |
# Check if result is still non-empty | |
if [ -n "$result" ]; then | |
echo "Outdated dependencies found:" | |
echo "$result" | |
exit 1 | |
fi | |
echo "No outdated dependencies found." | |
set +euv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment