How to clean react native project?
Is there any way to clean react native project as we can clean xcode project?
Any help will be appreciated!
How to clean react native project?
Is there any way to clean react native project as we can clean xcode project?
Any help will be appreciated!
React and node specific cleaning:
Remove
node_modules
to avoid inconsitence which may appear somehow rarely:(reinstall if need with
npm
oryarn
)Clean
npm
cache ifnpm
is usedClean react temp files:
A react-native Project is about one XCode Project and one Android Project. (pure js code no need to do clean)
So what's you need would be
Clean XCode Project with
And then clean Android Project with
You can simply write a batch file for it.
remove android folder run
then
To reset react-native specific cache, run:
if in package.json you have
Clean the Android Project with:
For Android
For IOS