diff --git a/README.md b/README.md index ee5c109d..b1db07f9 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,11 @@ Caveats & Issues

+
+Biepboep bap biep + ## ⚡ Why is it fast? This repository uses both [pnpm](https://pnpm.io/) and [Turborepo](https://turbo.build/repo) to speed things up, _by a lot_. With pnpm, we leverage the installation performance using the global store cache. Turborepo helps us to run certain tasks, and cache the result if we rerun tasks with the same input or code. In the workflows we cache the [pnpm store](./.github/actions/setup-monorepo/action.yml#L37) and [Turborepo cache](./.github/actions/setup-monorepo/action.yml#L50-L56) using GitHub Actions built-in cache, resulting in the best performance possible. diff --git a/apps/mobile/App.tsx b/apps/mobile/App.tsx index 63f335c8..a2fbd27f 100644 --- a/apps/mobile/App.tsx +++ b/apps/mobile/App.tsx @@ -12,6 +12,7 @@ export default function App() { ); } + const styles = StyleSheet.create({ container: { flex: 1, diff --git a/apps/mobile/app.json b/apps/mobile/app.json index 5bdc5cf1..beb5834b 100644 --- a/apps/mobile/app.json +++ b/apps/mobile/app.json @@ -1,7 +1,7 @@ { "expo": { "name": "expo-monorepo", - "slug": "expo-monorepo", + "slug": "expo-monorepo-example", "version": "1.0.0", "orientation": "portrait", "icon": "./assets/icon.png", @@ -30,6 +30,12 @@ }, "web": { "favicon": "./assets/favicon.png" - } + }, + "extra": { + "eas": { + "projectId": "c406e0fe-bb64-46b4-aef5-49c1e0925844" + } + }, + "owner": "bycedrictest" } }