-
Notifications
You must be signed in to change notification settings - Fork 949
/
.easignore
72 lines (59 loc) · 1.07 KB
/
.easignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Need `.easignore` to exist to prevent EAS from trying to use `.gitignore`s across the monorepo, which caused issues.
# This is mostly a copy/paste of the sibling `.gitignore` with some modifications
# exclude all unnecessary stuff to keep the size of the EAS archive small
.changeset
.github
.husky
# Ignore root-level folders
/examples
/plugins
/scripts
/starters
# But allow these folders in nested packages
!packages/**/examples
!packages/**/plugins
!packages/**/scripts
!packages/**/starters
# excluding everything except the monorepo packages
packages/*
!packages/sdks
!packages/sdks-tests
!packages/react
!packages/core
!packages/react-tests
*.tar.gz
# original .gitignore below
node_modules
*.log
dist
test-lib/**/*.js
coverage
.history
.nyc_output
.idea
.vscode
.next
firebase.json
temp
yarn-error.log
.build
Pods/
**/xcuserdata/*
**/build/*
**/.pnp.*
**/.yarn/*
!**/.yarn/patches
!**/.yarn/plugins
!**/.yarn/releases
!**/.yarn/sdks
!**/.yarn/versions
# macOS
.DS_Store
.cache
.rpt2_cache/
.env
.vercel
.nx/cache
.nx/workspace-data
# allow `.eas` folders
!**/.eas/**/*