react-native-navigation的迁移库

.gitignore 3.6KB

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