- prebuild: generate native ios/ and android/ projects - prebuild:clean: regenerate from scratch - run:ios / run:android: build and run locally with Xcode/Gradle - Add ios/ and android/ to .gitignore (CNG-generated) Allows building locally without EAS credits: pnpm --filter @trails-cool/mobile prebuild pnpm --filter @trails-cool/mobile run:ios Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
45 lines
492 B
Text
45 lines
492 B
Text
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# Expo
|
|
.expo/
|
|
dist/
|
|
web-build/
|
|
expo-env.d.ts
|
|
|
|
# CNG (Continuous Native Generation)
|
|
ios/
|
|
android/
|
|
|
|
# Native
|
|
.kotlin/
|
|
*.orig.*
|
|
*.jks
|
|
*.p8
|
|
*.p12
|
|
*.key
|
|
*.mobileprovision
|
|
|
|
# Metro
|
|
.metro-health-check*
|
|
|
|
# debug
|
|
npm-debug.*
|
|
yarn-debug.*
|
|
yarn-error.*
|
|
|
|
# macOS
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# local env files
|
|
.env*.local
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# generated native folders
|
|
/ios
|
|
/android
|