본문 바로가기

React 실습/오류 모음

error An unexpected error occurred: "C:\\Users\\hs\\AppData\\Local\\Yarn\\Cache\\v6\\npm-typescript-compare-0.0.2-7ee40a400a406c2ea0a7e551efd3309021d5f425-integrity\\node_modules\\typescript-compare\\.yarn-metadata.json: Unexpected end of JSON input".

728x90

yarn add [package명] 을 쓸 때가 있다.

 

그런데 잘만되던 녀석이 

error An unexpected error occurred: "C:\\Users\\hs\\AppData\\Local\\Yarn\\Cache\\v6\\npm-typescript-compare-0.0.2-7ee40a400a406c2ea0a7e551efd3309021d5f425-integrity\\node_modules\\typescript-compare\\.yarn-metadata.json: Unexpected end of JSON input".

 

같은 에러를 반복적으로 반환한하면 어떻게 해야할까?

위 에러를 해석해보면 yarn 의 metadata의 json파일에서 예기지 않은 input이 있다고 뜬다.

그렇기에 yarn의 metadata를 초기화시켜주면 된다.

 

yarn cache clean

 

 

다시 설치하면

 

yarn add [package명]  

728x90