Skip to content

Instantly share code, notes, and snippets.

@juanchoperezj
Created August 8, 2023 22:02
Show Gist options
  • Save juanchoperezj/d6464672330f7d4400f8a096b5d246ed to your computer and use it in GitHub Desktop.
Save juanchoperezj/d6464672330f7d4400f8a096b5d246ed to your computer and use it in GitHub Desktop.
Package.json scripts example
"scripts": {
"ios:staging": "APP_ENV=staging ts-node scripts/validate-env.ts && react-native run-ios --scheme MyReactNativeApp-Staging",
"ios:prod": "APP_ENV=prod ts-node scripts/validate-env.ts && react-native run-ios --scheme MyReactNativeApp",
"android:dev": "APP_ENV=dev ts-node scripts/validate-env.ts && react-native run-android --variant=devDebug --appIdSuffix=dev",
"android:qa": "APP_ENV=qa ts-node scripts/validate-env.ts && react-native run-android --variant=qaDebug --appIdSuffix=qa",
// ... other scripts
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment