npm은 clean이라는 명령어를 가지고 있지 않다.
대신 아래의 단계를 거쳐 똑같은 효과를 볼수 있다.
1. npm clean
rm -rf node_modules package-lock.json
npm cache clean --force
npm install
2. yarn clean
rm -rf node_modules yarn.lock package-lock.json
yarn cache clean
yarn install
npm은 clean이라는 명령어를 가지고 있지 않다.
대신 아래의 단계를 거쳐 똑같은 효과를 볼수 있다.
rm -rf node_modules package-lock.json
npm cache clean --force
npm install
rm -rf node_modules yarn.lock package-lock.json
yarn cache clean
yarn install