react-native-navigation的迁移库

.gitignore 3.2KB

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