Skip to content

Commit 1571e00

Browse files
committed
chore: fix EAS builds
1 parent e94deb7 commit 1571e00

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

apps/discovery/eas.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
"preview": {
88
"distribution": "internal"
99
},
10-
"production": {}
10+
"production": {
11+
"env": {
12+
"YARN_ENABLE_IMMUTABLE_INSTALLS": "false"
13+
}
14+
}
1115
},
1216
"submit": {
1317
"production": {}

apps/discovery/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"publish": "expo publish",
1010
"test": "jest --watchAll",
1111
"test:ts": "tsc --noEmit",
12-
"test:lint": "eslint --ext ts,tsx src/"
12+
"test:lint": "eslint --ext ts,tsx src/",
13+
"postinstall": "cd ../.. && yarn install"
1314
},
1415
"jest": {
1516
"preset": "jest-expo"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"build:tools": "yarn @doc/pages build && yarn @doc/mdx-gen-cli build && yarn doc-docusaurus-rfg-plugin build",
2020
"build:docs": "yarn build:tools && yarn website build-docs",
2121
"process-svg-assets": "node scripts/processSvgAssets.js",
22-
"postinstall": "husky install",
22+
"postinstall": "yarn process-svg-assets",
2323
"publish:website": "yarn build:docs && GIT_USER=$USER USE_SSH=true yarn workspace website deploy",
2424
"publish:discovery": "yarn workspace discovery publish"
2525
},

0 commit comments

Comments
 (0)