Skip to content

Commit

Permalink
Add prefix for EAS vars used in app.config.ts file
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Miller committed Dec 10, 2023
1 parent bfd8504 commit 16332da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions apps/expo/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
extra: {
eas: {
projectId: process.env.EAS_PROJECT_ID || '85fc6ccd-0ce1-4e4d-804c-b15df989f97e',
projectId: process.env.EXPO_PUBLIC_EAS_PROJECT_ID,
},
},
owner: process.env.EAS_OWNER || 'timothymiller',
owner: process.env.EXPO_PUBLIC_EAS_OWNER,
plugins: ['expo-router'],
experiments: {
tsconfigPaths: true,
Expand Down
4 changes: 2 additions & 2 deletions apps/expo/eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"distribution": "store",
"android": {
"buildType": "app-bundle",
"bun": "1.0.7"
"bun": "1.0.15"
},
"ios": {
"bun": "1.0.7"
"bun": "1.0.15"
},
"env": {
"TAMAGUI_TARGET": "native"
Expand Down
Binary file modified bun.lockb
Binary file not shown.
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,9 @@
"deps:fix": "manypkg fix",
"deps:update": "bun x npm-check-updates -ui -ws",
"postinstall": "bun run build && bun ./.github/scripts/env.ts && bun check-deps && bun format",
"clean": "git clean -xdf node_modules && rm bun.lockb",
"clean:all": "npm-run-all clean"
"clean": "git clean -xdf node_modules && rm -f bun.lockb && rm -rf ./apps/next/.next && rm -rf ./apps/next/.tamagui && rm -rf ./apps/next/node_modules && rm -rf ./packages/ui/dist"
},
"workspaces": [
"apps/*",
"packages/*"
],
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"@babel/runtime": "^7.23.2",
"@biomejs/biome": "1.3.3",
Expand Down

0 comments on commit 16332da

Please sign in to comment.