如何更新位於子資料夾中的多個專案中的所有 npm 套件我使用了以下的 Shell 腳本: 12345678910111213#!/bin/bashfor dir in \*/; do cd "$dir" if [ -f package.json ]; then rm -rf node\_modules npx ncu -u npm update fi cd ..done tags: [“npm”, “shell script”, “package.json”]