1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-22 10:22:32 +01:00

Create update-npm.sh

This commit is contained in:
Stylix58 2021-05-01 17:23:47 +02:00 committed by GitHub
parent 6c5ab3d061
commit caffbe3186
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
echo Update all dependancies...
cd ../..
source "config.sh"
for D in */; do
echo --------------
echo "$D";
cd $D
if [ $pnpm = true ]
then
pnpm i
else
npm i
fi
cd ..
done