Skip to content

Commit b5f1aa0

Browse files
committed
fix: add .easignore file
1 parent 1dad992 commit b5f1aa0

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed

.easignore

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# XDE
6+
.expo/
7+
8+
# VSCode
9+
.vscode/
10+
jsconfig.json
11+
12+
# Xcode
13+
#
14+
build/
15+
*.pbxuser
16+
!default.pbxuser
17+
*.mode1v3
18+
!default.mode1v3
19+
*.mode2v3
20+
!default.mode2v3
21+
*.perspectivev3
22+
!default.perspectivev3
23+
xcuserdata
24+
*.xccheckout
25+
*.moved-aside
26+
DerivedData
27+
*.hmap
28+
*.ipa
29+
*.xcuserstate
30+
project.xcworkspace
31+
**/.xcode.env.local
32+
33+
# Android/IJ
34+
#
35+
.classpath
36+
.cxx
37+
.gradle
38+
.idea
39+
.project
40+
.settings
41+
local.properties
42+
android.iml
43+
44+
# Cocoapods
45+
#
46+
example/ios/Pods
47+
examples/*/ios/Pods
48+
49+
# Ruby
50+
example/vendor/
51+
examples/*/vendor/
52+
53+
# node.js
54+
#
55+
node_modules/
56+
npm-debug.log
57+
yarn-debug.log
58+
yarn-error.log
59+
60+
# BUCK
61+
buck-out/
62+
\.buckd/
63+
android/app/libs
64+
android/keystores/debug.keystore
65+
66+
# Yarn
67+
.yarn/*
68+
!.yarn/patches
69+
!.yarn/plugins
70+
!.yarn/releases
71+
!.yarn/sdks
72+
!.yarn/versions
73+
74+
# Expo
75+
.expo/
76+
77+
# Turborepo
78+
.turbo/
79+
80+
# generated by bob
81+
lib/
82+
83+
# React Native Codegen
84+
ios/generated
85+
android/generated
86+
87+
# NOTE: ios/ is NOT ignored here (unlike .gitignore) so CloudSync.xcframework is uploaded to EAS Build
88+
89+
# React Native Nitro Modules
90+
nitrogen/
91+
92+
# Example app environment files
93+
examples/*/.env

0 commit comments

Comments
 (0)