Files
Prathiyuman 7681e46449
Some checks failed
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / build-library (push) Has been cancelled
CI / build-android (push) Has been cancelled
CI / build-ios (push) Has been cancelled
chore: initial commit
2025-12-16 14:54:44 +05:30

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": []
}
}
}