본문 바로가기

미드영어 공부

React-native troubleshoot 리스트

리엑트 네이티브(React-native) troubleshoot 리스트


Error - babelHelpers.asyncToGenerator is not a function


Jest 테스트에서 async/await를 사용하려고 documentation 대로 babel-plugin-transform-async-to-generator를 설치하자


1
npm install --save-dev babel-plugin-transform-async-to-generator
cs


babelHelpers.asyncToGenerator is not a function 라는 에러가 뜸. 

NPM패키지를 지우고 다시 gradlew clean을 했음에도 같은 에러가 계속 뜸 


리엑트 네이티브 캐시 때문에 그런거 같다고 해서 아래와 같은 cli command를 돌려봄. 해결!


해결책 - 출처 


react-native start --reset-cache