WEB/Node.js

[Node.js] yarn에서 npm으로 변환하기

S0PH1A 2020. 12. 9. 16:54
반응형

[Node.js] yarn에서 npm으로 변환하기


 

 

1. yarn.lock 파일 삭제

 

2. node_modules/ 폴더 삭제

 

3. package.json 에서 yarn 명령어 사용하는 부분이 존재하면 npm 으로 변경

 

4. install

$ npm install

 

 

 


참고: https://stackoverflow.com/questions/51239726/react-native-switch-from-yarn-to-npm

반응형