Skip to content

Commit

Permalink
Merge pull request #124 from rmarscher/lucia-upstream-update-20231209
Browse files Browse the repository at this point in the history
Lucia upstream update 20231209
  • Loading branch information
timothymiller authored Dec 12, 2023
2 parents 86bda56 + 6c21559 commit ae4fd94
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
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
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
2 changes: 1 addition & 1 deletion packages/app/provider/solito-image/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit ae4fd94

Please sign in to comment.