forked from software-mansion/react-native-enriched
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
46 lines (46 loc) · 1.02 KB
/
turbo.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build:web": {
"outputs": ["dist/**"],
"inputs": [
"package.json",
"src/**",
"tsconfig.json",
"vite.config.ts",
"index.html"
]
},
"build:android": {
"env": ["ORG_GRADLE_PROJECT_newArchEnabled"],
"inputs": [
"package.json",
"android",
"!android/build",
"src/*.ts",
"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",
"*.podspec",
"ios",
"src/*.ts",
"src/*.tsx",
"apps/example/package.json",
"apps/example/ios",
"!apps/example/ios/build",
"!apps/example/ios/Pods"
],
"outputs": []
}
}
}