Develop/React Native

[React Native] build가 영원히 되지 않을 때

안다희 2020. 5. 10. 15:54
728x90

react-native run-ios 를 할 때

fail이 아니라 영원히 build가 되지 않을 때가 있다.

 

원래는 이렇게 빌드가 잘 되어야 하는데

 

Building 다음에

..

이 위 사진처럼 많이 생기지 않고 딱 .. 2개만 생기면서 영원히 빌드가 끝나지 않을 때가 있다.

 

=> 

https://github.com/facebook/react-native/issues/15469

 

[Build][iOS] Building project in Xcode takes for ever in Running 1 of 1 custom shell scripts · Issue #15469 · facebook/react-n

Have you read the Contributing Guidelines? yes Environment react-native-cli: 2.0.1 react-native: 0.46.4 $ node -v v6.11.2 $ npm -v 3.10.10 $ yarn --version 0.24.5 iOS Then, specify: Steps to Reprod...

github.com

여기서 해결법을 찾았다!

 

watchman watch-del-all
rm -rf node_modules
react-native run-ios --simulator="iPhone 11"

 

watchman을 한 번 깨끗하게 해주면 해결!

 

 

 

===========

What is watchman?

https://facebook.github.io/watchman/

https://stackoverflow.com/questions/42235799/what-is-the-use-of-watchman-for-react-native

파일을보고 파일이 변경되면 기록합니다

코드를 변경 한 시점을 감지 한 후 수동으로 새로 고치지 않아도 자동으로 장치 업데이트를 빌드하고 푸시합니다.

 

 

 

 

추가적으로 expo에서 제공하는 react native packager clear 방법도 참고하자!

https://forums.expo.io/t/how-to-clear-the-react-native-packager/1352

 

출처: https://mingos-habitat.tistory.com/34 [밍고의서식지:티스토리]