react-native-navigation的迁移库

.gitignore 3.5KB

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