Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
I used this shell script:
#!/bin/bash
for dir in */; do
cd "$dir"
if [ -f package.json ]; then
rm -rf node_modules
npx ncu -u
npm update
fi
cd ..
done