LoginSignup
10
7

More than 5 years have passed since last update.

React Native 開発のリセット・キャッシュ削除手段一覧メモ

Posted at

iOS

Simulator menu > reset setting
Xcode > Product > Clean
Xcode > Product > (Alt) Clean Build Folder

Fullscreen_2017_02_14_14_52.png

Cocoapod

rm -rf ~/Library/Caches/CocoaPods
rm -rf ./Pods/

(↓公式から)

rm -fr ~/Library/Caches/CocoaPods && \
gem update --system && \
gem update && \
gem cleanup && \
pod setup

npm, yarn

rm -rf node_modules
yarn cache clean

git

# 対象となるファイル確認 .env, token など注意
git clean -n -d -X

# 削除実行
git clean -d -X
10
7
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
10
7