| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "$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/mobile/package.json",
- "example/mobile/android",
- "!example/mobile/android/.gradle",
- "!example/mobile/android/build",
- "!example/mobile/android/app/build",
- "example/web/package.json",
- "example/web/android",
- "!example/web/android/.gradle",
- "!example/web/android/build",
- "!example/web/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/mobile/package.json",
- "example/mobile/ios",
- "!example/mobile/ios/build",
- "!example/mobile/ios/Pods",
- "example/web/package.json",
- "example/web/ios",
- "!example/web/ios/build",
- "!example/web/ios/Pods"
- ],
- "outputs": [
- ]
- }
- }
- }
|