forked from AgusMayol/optics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
73 lines (73 loc) · 1.4 KB
/
Copy pathturbo.json
File metadata and controls
73 lines (73 loc) · 1.4 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
{
"$schema": "https://turbo.build/schema.json",
"globalPassThroughEnv": [
"FLAGS_SECRET",
"GROWTHBOOK_CLIENT_KEY",
"VERCEL_TARGET_ENV",
"VERCEL",
"VERCEL_ENV"
],
"envMode": "loose",
"tasks": {
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["sync:sources", "extract-props"]
},
"build": {
"dependsOn": [
"^build",
"sync:sources",
"registry:build",
"extract-props"
],
"inputs": [
"app/**",
"components/**",
"hooks/**",
"lib/**",
"public/**",
"registry/**",
"!public/r/**",
"*.{js,jsx,ts,tsx}",
"next.config.ts",
"tailwind.config.*",
"tsconfig.json",
"package.json",
"registry.json"
],
"outputs": [".next/**", "registry/**/dist/**"]
},
"extract-props": {
"dependsOn": ["sync:sources"],
"cache": true,
"inputs": [
"scripts/extract-props.js",
"registry/optics/**/*.{jsx,tsx,js,ts}",
"tsconfig.json",
"package.json"
],
"outputs": ["registry/optics/dist/**/*.json"]
},
"registry:build": {
"dependsOn": ["sync:sources"],
"inputs": ["registry.json"],
"outputs": ["public/r/**"]
},
"lint": {
"outputs": []
},
"format": {
"cache": false
},
"sync:sources": {
"cache": true,
"inputs": [
"registry/optics/**/*.jsx",
"registry/optics/**/*.js",
"scripts/sync-source-files.js"
],
"outputs": ["registry/optics/dist/**/*.txt"]
}
}
}