44 lines
1006 B
JSON
44 lines
1006 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [".nvmrc", ".yarnrc.yml"],
|
|
"globalEnv": ["NODE_ENV"],
|
|
"tasks": {
|
|
"build:android": {
|
|
"env": ["ANDROID_HOME", "ORG_GRADLE_PROJECT_newArchEnabled"],
|
|
"inputs": [
|
|
"package.json",
|
|
"android",
|
|
"!android/build",
|
|
"src/*.ts",
|
|
"src/*.tsx",
|
|
"example/package.json",
|
|
"example/android",
|
|
"!example/android/.gradle",
|
|
"!example/android/build",
|
|
"!example/android/app/build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"build:ios": {
|
|
"env": [
|
|
"RCT_NEW_ARCH_ENABLED",
|
|
"RCT_REMOVE_LEGACY_ARCH",
|
|
"RCT_USE_RN_DEP",
|
|
"RCT_USE_PREBUILT_RNCORE"
|
|
],
|
|
"inputs": [
|
|
"package.json",
|
|
"*.podspec",
|
|
"ios",
|
|
"src/*.ts",
|
|
"src/*.tsx",
|
|
"example/package.json",
|
|
"example/ios",
|
|
"!example/ios/build",
|
|
"!example/ios/Pods"
|
|
],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|