LoginSignup
0
2

React Nativeのキャッシュクリアってこれでいい?

Posted at

React Nativeのアップデートする時にキャッシュで悩まされる事が多いのでクリアするコマンドのまとめです。

watchman

watchman watch-del-all
watchman shutdown-server

node_modules周り

rm -rf node_modules yarn.lock
yarn cache clean

ネイティブ周り

rm -rf ios/Pods ios/Podfile.lock ios/build
rm -rf ~/Library/Developer/Xcode/DerivedData
rm -rf android/build

react-native start

react-native start --reset-cache

他にもクリアするものがあれば追記したいと思います。(Androidってこれだけでよかったっけ?)

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2