Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
<a href="https://github.com/byCedric/expo-monorepo-example#%EF%B8%8F-caveats"><b>Caveats & Issues</b></a>
</p>


<br />

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.
Expand Down
1 change: 1 addition & 0 deletions apps/mobile/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default function App() {
);
}


const styles = StyleSheet.create({
container: {
flex: 1,
Expand Down
10 changes: 8 additions & 2 deletions apps/mobile/app.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -30,6 +30,12 @@
},
"web": {
"favicon": "./assets/favicon.png"
}
},
"extra": {
"eas": {
"projectId": "c406e0fe-bb64-46b4-aef5-49c1e0925844"
}
},
"owner": "bycedrictest"
}
}