-
-
Notifications
You must be signed in to change notification settings - Fork 606
Expand file tree
/
Copy pathturbo.json
More file actions
97 lines (97 loc) · 2.44 KB
/
Copy pathturbo.json
File metadata and controls
97 lines (97 loc) · 2.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build:js": {
"inputs": ["package.json", "src/**", "tamagui-build.js"],
"outputs": ["dist/**"]
},
"build": {
"dependsOn": ["^build"],
"inputs": [
"tsconfig.json",
"package.json",
"src/**/*",
"tamagui-build.js",
"externalNodePlugin.js"
],
"outputs": [".next/**/*", "dist/**/*", "types/**/*"]
},
"check": {
"cache": false,
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "tsconfig.json", "tsconfig.*.json", "../../tsconfig.json", "../../tsconfig.build.json"],
"outputs": ["types/**"]
},
"typecheck:root": {
"dependsOn": ["^build"],
"inputs": ["code/**/src/**/*.ts", "code/**/src/**/*.tsx", "**/tsconfig.json", "tsconfig.build.json"],
"outputs": ["code/**/types/**"]
},
"start": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build:js"],
"inputs": ["../../bun.lockb", "src/**", "tests/**", "__tests__/**", "*.config.*"],
"outputs": [],
"env": [
"TAMAGUI_TARGET",
"TAMAGUI_TEST_ANIMATION_DRIVER",
"TEST_NATIVE_PLATFORM",
"DISABLE_NATIVE_TEST",
"DISABLE_REACT_NATIVE",
"SKIP_NATIVE_TESTS",
"NODE_ENV",
"PORT"
],
"passThroughEnv": [
"TAMAGUI_TARGET",
"TAMAGUI_TEST_ANIMATION_DRIVER",
"TEST_NATIVE_PLATFORM",
"DISABLE_NATIVE_TEST",
"DISABLE_REACT_NATIVE",
"SKIP_NATIVE_TESTS",
"NODE_ENV",
"PORT"
]
},
"test:web": {
"dependsOn": ["^build:js"],
"inputs": ["../../bun.lockb", "src/**", "tests/**", "__tests__/**", "*.config.*"],
"outputs": [],
"env": [
"TAMAGUI_TARGET",
"TAMAGUI_TEST_ANIMATION_DRIVER",
"NODE_ENV",
"PORT"
],
"passThroughEnv": [
"TAMAGUI_TARGET",
"TAMAGUI_TEST_ANIMATION_DRIVER",
"NODE_ENV",
"PORT"
]
},
"test:native": {
"dependsOn": ["^build:js"],
"inputs": ["../../bun.lockb", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"outputs": [],
"cache": false
},
"clean": {
"outputs": ["dist/**/*"],
"cache": false
},
"clean:build": {
"outputs": [],
"cache": false
},
"dev": {
"cache": false
}
}
}