diff --git a/README.md b/README.md index 17f34a573..0221901be 100644 --- a/README.md +++ b/README.md @@ -246,13 +246,16 @@ We welcome contributions from anyone and everyone. Please read our [contributing - [Nate Birdman](https://twitter.com/natebirdman) - Creator of Tamagui - [Aiden Bai](https://aiden.mov/) - Creator of Million.js and PattyCake -- [Tanner Linsley](https://twitter.com/tannerlinsley) - Creator of TanStack -- [Drizzle Developers](https://twitter.com/DrizzleOrm) - [Yusuke Wada](https://twitter.com/yusukebe) - Creator of Hono.js -- [Fernando Rojo](https://twitter.com/fernandotherojo) - Creator of Solito - [Daishi Kato](https://twitter.com/dai_shi) Creator of Jotai +- [Fernando Rojo](https://twitter.com/fernandotherojo) - Inspiration behind Solito +- [Tanner Linsley](https://twitter.com/tannerlinsley) - Creator of TanStack - [Expo Developers](https://twitter.com/expo) - Insightful office hours +## ™️ Disclaimer + +The T4 App is not affiliated with or endorsed by [EquipmentShare](https://www.equipmentshare.com/t3) or [T3 app](https://www.equipmentshare.com/t3#apps). + ## ⚖️ License **Create T4 App** is licensed under the [MIT License](https://github.com/timothymiller/t4-app/blob/master/LICENSE). diff --git a/apps/expo/app.config.ts b/apps/expo/app.config.ts index b21587ff3..2398ef2e7 100755 --- a/apps/expo/app.config.ts +++ b/apps/expo/app.config.ts @@ -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, diff --git a/apps/expo/eas.json b/apps/expo/eas.json index 1b066c233..0b95912a2 100644 --- a/apps/expo/eas.json +++ b/apps/expo/eas.json @@ -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" diff --git a/package.json b/package.json index 43a743ccc..d76dd456f 100755 --- a/package.json +++ b/package.json @@ -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", diff --git a/packages/app/provider/solito-image/index.tsx b/packages/app/provider/solito-image/index.tsx index 86ff9818b..262b23ab3 100644 --- a/packages/app/provider/solito-image/index.tsx +++ b/packages/app/provider/solito-image/index.tsx @@ -2,7 +2,7 @@ import { replaceLocalhost } from 'app/utils/trpc/localhost.native' import { SolitoImageProvider as SolitoImageProviderOG } from 'solito/image' export const getImageUrl = () => { - const imageUrl = `${process.env.NEXT_PUBLIC_APP_URL}` + const imageUrl = `${process.env.EXPO_PUBLIC_APP_URL}` return replaceLocalhost(imageUrl) }