-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathturbo.json
More file actions
29 lines (29 loc) · 839 Bytes
/
turbo.json
File metadata and controls
29 lines (29 loc) · 839 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {
"dependsOn": ["build:brownfield"],
"inputs": ["**/*.ts", "**/*.tsx", "**/*.js", "**/eslint.config.*"]
},
"typecheck": {
"dependsOn": ["build:brownfield"],
"inputs": ["**/*.ts", "**/*.tsx"]
},
"test": {},
"build": {
"dependsOn": ["^build"]
},
"build:brownfield": {
"inputs": [
"packages/react-native-brownfield/package.json",
"packages/react-native-brownfield/android",
"packages/react-native-brownfield/!android/build",
"packages/react-native-brownfield/ios",
"packages/react-native-brownfield/!ios/build",
"packages/react-native-brownfield/!ios/Pods",
"packages/react-native-brownfield/src/"
],
"outputs": ["lib/**"]
}
}
}