/

如何更新位於子資料夾中的多個專案中的所有 npm 套件

如何更新位於子資料夾中的多個專案中的所有 npm 套件

我使用了以下的 Shell 腳本:

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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

tags: [“npm”, “shell script”, “package.json”]