-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
53 lines (53 loc) · 1.31 KB
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", "**/.env.*local"],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", "dist/**"]
},
"typecheck": {
"dependsOn": ["topo", "^build"]
},
"dev": {
"persistent": true,
"cache": false
},
"build:android": {
"env": ["ORG_GRADLE_PROJECT_newArchEnabled"],
"inputs": [
"packages/*/package.json",
"packages/*/android",
"!packages/*/android/.gradle",
"!packages/*/android/build",
"packages/*/src/*.ts",
"packages/*/src/*.tsx",
"apps/example/package.json",
"apps/example/android",
"!apps/example/android/.gradle",
"!apps/example/android/build",
"!apps/example/android/app/build"
],
"outputs": []
},
"build:ios": {
"env": ["RCT_NEW_ARCH_ENABLED"],
"inputs": [
"package.json",
"packages/*/package.json",
"packages/*/*.podspec",
"packages/*/ios",
"packages/*/src/*.ts",
"packages/*/src/*.tsx",
"apps/example/package.json",
"apps/example/ios",
"!apps/example/ios/build",
"!apps/example/ios/Pods"
],
"outputs": []
}
}
}