Skip to content

Commit cc70e02

Browse files
committed
fix: eas.json
1 parent d9a62e4 commit cc70e02

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

examples/sync-demo-expo/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ android/
1818

1919
# Account-specific files (create your own from .example templates)
2020
google-services.json
21-
eas.json
21+

examples/sync-demo-expo/eas.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"cli": {
3+
"version": ">= 13.2.0"
4+
},
5+
"build": {
6+
"development": {
7+
"developmentClient": true,
8+
"distribution": "internal"
9+
},
10+
"preview": {
11+
"environment": "preview",
12+
"distribution": "internal",
13+
"ios": {
14+
"buildConfiguration": "Release"
15+
},
16+
"prebuildCommand": "cd ../.. && yarn bob build"
17+
},
18+
"production": {
19+
"prebuildCommand": "cd ../.. && yarn bob build"
20+
}
21+
},
22+
"submit": {
23+
"production": {}
24+
}
25+
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"bare:ios:device": "yarn install && yarn prepare && yarn bare:example ios:device",
5555
"bare:android": "yarn install && yarn prepare && yarn bare:example android",
5656
"bare:android:device": "yarn install && yarn prepare && yarn bare:example android:device",
57+
"postinstall": "bob build",
5758
"prepare": "./setup.sh && bob build",
5859
"typecheck": "tsc",
5960
"lint": "eslint \"**/*.{js,ts,tsx}\"",

0 commit comments

Comments
 (0)