Created
May 28, 2019 00:27
-
-
Save icerda/41abb7c9db218dc9c03657a60fbf25ea to your computer and use it in GitHub Desktop.
.gitignore for React Native
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules/**/* | |
.expo/* | |
npm-debug.* | |
*.jks | |
*.p12 | |
*.key | |
*.mobileprovision | |
# Xcode | |
!**/*.xcodeproj | |
!**/*.pbxproj | |
!**/*.xcworkspacedata | |
!**/*.xcsettings | |
!**/*.xcscheme | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
*.moved-aside | |
DerivedData | |
*.hmap | |
*.ipa | |
*.xcuserstate | |
project.xcworkspace | |
# Gradle | |
/build/ | |
/RNTester/android/app/build/ | |
/RNTester/android/app/gradle/ | |
/RNTester/android/app/gradlew | |
/RNTester/android/app/gradlew.bat | |
/ReactAndroid/build/ | |
# Buck | |
.buckd | |
buck-out | |
/ReactAndroid/src/main/jni/prebuilt/lib/armeabi-v7a/ | |
/ReactAndroid/src/main/jni/prebuilt/lib/x86/ | |
/ReactAndroid/src/main/gen | |
# Watchman | |
.watchmanconfig | |
# Android | |
.idea | |
.gradle | |
local.properties | |
*.iml | |
/android/ | |
# Node | |
node_modules | |
*.log | |
.nvm | |
/bots/node_modules/ | |
package-lock.json | |
# OS X | |
.DS_Store | |
# Test generated files | |
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js | |
*.js.meta | |
/coverage | |
/third-party | |
# Root dir shouldn't have Xcode project | |
/*.xcodeproj | |
# ReactCommon subdir shouldn't have Xcode project | |
/ReactCommon/**/*.xcodeproj | |
RNTester/build | |
# CocoaPods | |
/template/ios/Pods/ | |
/template/ios/Podfile.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment