Skip to content

Commit bbc3d57

Browse files
committedAug 1, 2024·
First pass with react native
1 parent b7219ee commit bbc3d57

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+30723
-5963
lines changed
 

‎.gitignore

+76-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,79 @@ vendor
2727

2828
.spago
2929

30-
.parcel-cache
30+
.parcel-cache
31+
32+
# OSX
33+
#
34+
.DS_Store
35+
36+
# Xcode
37+
#
38+
build/
39+
*.pbxuser
40+
!default.pbxuser
41+
*.mode1v3
42+
!default.mode1v3
43+
*.mode2v3
44+
!default.mode2v3
45+
*.perspectivev3
46+
!default.perspectivev3
47+
xcuserdata
48+
*.xccheckout
49+
*.moved-aside
50+
DerivedData
51+
*.hmap
52+
*.ipa
53+
*.xcuserstate
54+
**/.xcode.env.local
55+
56+
# Android/IntelliJ
57+
#
58+
build/
59+
.idea
60+
.gradle
61+
local.properties
62+
*.iml
63+
*.hprof
64+
.cxx/
65+
*.keystore
66+
!debug.keystore
67+
68+
# node.js
69+
#
70+
node_modules/
71+
npm-debug.log
72+
yarn-error.log
73+
74+
# fastlane
75+
#
76+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
77+
# screenshots whenever they are needed.
78+
# For more information about the recommended setup visit:
79+
# https://docs.fastlane.tools/best-practices/source-control/
80+
81+
**/fastlane/report.xml
82+
**/fastlane/Preview.html
83+
**/fastlane/screenshots
84+
**/fastlane/test_output
85+
86+
# Bundle artifact
87+
*.jsbundle
88+
89+
# Ruby / CocoaPods
90+
**/Pods/
91+
/vendor/bundle/
92+
93+
# Temporary files created by Metro to check the health of the file watcher
94+
.metro-health-check*
95+
96+
# testing
97+
/coverage
98+
99+
# Yarn
100+
.yarn/*
101+
!.yarn/patches
102+
!.yarn/plugins
103+
!.yarn/releases
104+
!.yarn/sdks
105+
!.yarn/versions

‎.yarn/releases/yarn-3.6.4.cjs

+874
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.