Instruction for clearing cache does not work with react-native 0.57
See original GitHub issueThis instruction:
{
"scripts": {
"start": "rm -rf ./node_modules/.cache/babel-loader && node index.js"
}
}
does not work with react-native 0.57
Is there any way to fix it in react-native?
Issue Analytics
- State:
- Created 5 years ago
- Comments:10
Top Results From Across the Web
How to clear react-native cache? - Stack Overflow
For React Native Init approach (without expo) use: npm start -- --reset-cache.
Read more >Upgrading to new versions - React Native
Some upgrades won't be done automatically with the React Native CLI and require manual work, e.g. 0.28 to 0.29 , or 0.56 to...
Read more >Deploying React Native to Bitrise, Fabric, CircleCI - Medium
This post is about implementing QR code scanning, fixing building issues, continuous integration with Bitrise, crash reporting with Fabric ...
Read more >react-native-video - npm
Works with cached videos as well. (Checkout video-caching example); If the video is has not began buffering (e.g. there is no internet ...
Read more >unable to resolve module react-native-elements - You.com
1. I had the same problem, I fixed that by below steps: 1-> delete node_modules by: rm -rf node_modules. 2-> delte Pods ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
rm -rf ./node_modules/.cache/@babel
helps at least fo babel-node@mieszko4 @iamnader
react-native start --reset-cache
works for me