react-native-navigation的迁移库

.gitignore 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. ############
  2. # Node
  3. ############
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. # Runtime data
  9. pids
  10. *.pid
  11. *.seed
  12. # Directory for instrumented libs generated by jscoverage/JSCover
  13. lib-cov
  14. # Coverage directory used by tools like istanbul
  15. coverage
  16. # nyc test coverage
  17. .nyc_output
  18. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  19. .grunt
  20. # node-waf configuration
  21. .lock-wscript
  22. # Compiled binary addons (http://nodejs.org/api/addons.html)
  23. build/Release
  24. # Dependency directories
  25. node_modules
  26. jspm_packages
  27. # Optional npm cache directory
  28. .npm
  29. # Optional REPL history
  30. .node_repl_history
  31. ################
  32. # JetBrains
  33. ################
  34. .idea
  35. ## File-based project format:
  36. *.iws
  37. ## Plugin-specific files:
  38. # IntelliJ
  39. /out/
  40. # mpeltonen/sbt-idea plugin
  41. .idea_modules/
  42. # JIRA plugin
  43. atlassian-ide-plugin.xml
  44. # Crashlytics plugin (for Android Studio and IntelliJ)
  45. com_crashlytics_export_strings.xml
  46. crashlytics.properties
  47. crashlytics-build.properties
  48. fabric.properties
  49. ############
  50. # iOS
  51. ############
  52. # Xcode
  53. #
  54. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  55. ## Build generated
  56. ios/build/
  57. ios/DerivedData/
  58. ## Various settings
  59. *.pbxuser
  60. !default.pbxuser
  61. *.mode1v3
  62. !default.mode1v3
  63. *.mode2v3
  64. !default.mode2v3
  65. *.perspectivev3
  66. !default.perspectivev3
  67. ios/xcuserdata/
  68. ## Other
  69. *.moved-aside
  70. *.xcuserstate
  71. ## Obj-C/Swift specific
  72. *.hmap
  73. *.ipa
  74. *.dSYM.zip
  75. *.dSYM
  76. # CocoaPods
  77. #
  78. # We recommend against adding the Pods directory to your .gitignore. However
  79. # you should judge for yourself, the pros and cons are mentioned at:
  80. # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
  81. #
  82. ios/Pods/
  83. # Carthage
  84. #
  85. # Add this line if you want to avoid checking in source code from Carthage dependencies.
  86. # Carthage/Checkouts
  87. Carthage/Build
  88. # fastlane
  89. #
  90. # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
  91. # screenshots whenever they are needed.
  92. # For more information about the recommended setup visit:
  93. # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
  94. fastlane/report.xml
  95. fastlane/screenshots
  96. ############
  97. # Android
  98. ############
  99. # Built application files
  100. *.apk
  101. *.ap_
  102. # Files for the Dalvik VM
  103. *.dex
  104. # Java class files
  105. *.class
  106. # Generated files
  107. android/bin/
  108. android/gen/
  109. android/out/
  110. # Gradle files
  111. android/.gradle/
  112. android/build/
  113. # Local configuration file (sdk path, etc)
  114. local.properties
  115. # Proguard folder generated by Eclipse
  116. android/proguard/
  117. # Log Files
  118. *.log
  119. # Android Studio Navigation editor temp files
  120. android/.navigation/
  121. # Android Studio captures folder
  122. android/captures/
  123. # Intellij
  124. *.iml
  125. # Keystore files
  126. *.jks
  127. ##################
  128. # React-Native
  129. ##################
  130. # OSX
  131. #
  132. .DS_Store
  133. # Xcode
  134. #
  135. build/
  136. *.pbxuser
  137. !default.pbxuser
  138. *.mode1v3
  139. !default.mode1v3
  140. *.mode2v3
  141. !default.mode2v3
  142. *.perspectivev3
  143. !default.perspectivev3
  144. xcuserdata
  145. *.xccheckout
  146. *.moved-aside
  147. DerivedData
  148. *.hmap
  149. *.ipa
  150. *.xcuserstate
  151. project.xcworkspace
  152. # Android/IJ
  153. #
  154. .idea
  155. .gradle
  156. local.properties
  157. # node.js
  158. #
  159. node_modules/
  160. npm-debug.log
  161. # BUCK
  162. buck-out/
  163. \.buckd/
  164. android/app/libs
  165. android/keystores/debug.keystore
  166. # Snapshot tests diffs
  167. ios/SnapshotTests/FailureDiffs/