본문 바로가기
ReactNative

ReactNative_ Invalid `Podfile` file: 767: unexpected token at ''

by JunsC 2024. 3. 5.
728x90

 

ReactNative IOS npm 모듈 설치 후

pod cache -- clean

rm -rf podlock 

rm-rf pods

pod install

명령어를 차례로 실행했더니 위와 같은 에러가 나왔다.

건드린 곳은 없고 이상하게 추가한 곳도 없는데 저런 에러가 나왔다.

 

https://stackoverflow.com/questions/72971698/invalid-podfile-file-767-unexpected-token-at

 

Invalid `Podfile` file: 767: unexpected token at ''

I am trying to run my IOS app with react native, but I need to update my Pods. so I run on terminal: cd iOS && pod install But I get this error on the title internal/modules/cjs/loader.js:...

stackoverflow.com

 

이 해결방법을 참조해서 

npm ci 를 한 후 다시 pod install 했더니 해결되었다.

 

 

 

이 부분은 React Native 에서 npm 한 부분들이 IOS 의 프레임워크나 라이브러리 등 제대로 적용이 안돼서 그런 듯 하다

그래서 기본적으로 React Native 에서의 모든 npm list 들을 다시한번 ci 로 package-lock.json 의 버전과 똑같이 맞춘 후 pod install 로 재 적용을 해준 것이다.

"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."