expo-build-disk-cache
v0.7.3
Published
A plugin for Expo CLI that provides disk-based app build caching
Readme
expo-build-disk-cache

⚡ Drastically speed up your
npx expo run:androidornpx expo run:iosbuilds!
expo-build-disk-cache enables local disk caching for Expo builds.
When a cached build is available, it launches almost instantly — skipping the usual compilation step.
🚀 Quick Start
Requirements
- Expo SDK 53+
Installation
npm install --save-dev expo-build-disk-cacheAdd to Your App Config
Expo SDK 54+
{
"buildCacheProvider": {
"plugin": "expo-build-disk-cache"
}
}Expo SDK 53 (under experiments)
{
"experiments": {
"buildCacheProvider": {
"plugin": "expo-build-disk-cache"
}
}
}⚙️ Configuration
See the full Configuration Guide for advanced usage, including:
- Custom cache directory (
cacheDir) - Automatic cache cleanup
- Integration with remote caching providers (like EAS)
📦 Releases
This repo uses Changesets.
- For any user-facing package change, run
bun run changesetand commit the generated file in.changeset/. - When changesets reach
main, GitHub Actions opens or updates a release PR with the version bump and generatedCHANGELOG.md. - Merge that release PR to publish to npm.
🤝 Acknowledgments
Huge thanks to the Expo team for making this possible and for their incredible open-source work.
