Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

clear-node-cache.sh 302B

123456789101112131415161718
  1. #!/bin/bash
  2. echo "Removing node_modules..."
  3. rm -rf node_modules/
  4. echo -e "Done\n"
  5. echo "Removing locks..."
  6. rm -f package-lock.json && rm -f yarn.lock
  7. echo -e "Done\n"
  8. #echo "Verifying npm cache..."
  9. #npm cache verify
  10. #echo -e "Done\n"
  11. echo "Installing dependencies..."
  12. npm install
  13. echo -e "Done\n"