Skip to content

Commit f23d10e

Browse files
authored
Create Expo.gitignore
1 parent 136f98d commit f23d10e

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# .gitignore template for Expo
2+
# website: https://expo.dev/
3+
# docs: https://docs.expo.dev/workflow/expo-cli/
4+
#
5+
# Rationale:
6+
# node_modules/ is always ignored
7+
# .expo/, .expo-shared/ are Expo’s local state and project-settings cache (see docs)
8+
#  Metro caches/logs are *.expo, *.tunnel, *.cache, *.tmp, *.log
9+
10+
# Node modules
11+
node_modules/
12+
13+
# Expo local state and caches
14+
.expo/ # runtime state (Metro bundler, dev-client data, tunnels)
15+
.expo-shared/ # shared project settings (app.json edits, etc.)
16+
17+
# Metro bundler caches/logs
18+
*.expo # generic Expo temp files
19+
*.tunnel # Expo DevTools tunnels
20+
*.cache # Metro cache folder
21+
*.tmp # temp files created during bundling
22+
*.log # build or Metro logs
23+
24+
# macOS system files
25+
.DS_Store
26+
27+
# Environment variables
28+
.env
29+
.env.local
30+
.env.*.local
31+
32+
# Package manager logs
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*

0 commit comments

Comments
 (0)