forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
137 lines (134 loc) · 2.72 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"$schema": "https://turborepo.org/schema.json",
"remoteCache": {
"signature": true
},
"globalDependencies": [
".changeset/changelog.js",
".changeset/config.json",
".github/**",
".jit",
".nvmrc",
".prettier*",
"jest.*.ts",
"package.json",
"package-lock.json",
"tsconfig.json",
"tsconfig.*.json",
"verdaccio.yaml"
],
"globalEnv": [
"CLERK_*",
"GATSBY_CLERK_*",
"NEXT_PUBLIC_CLERK_*",
"MAILSAC_API_KEY",
"NODE_ENV",
"NODE_VERSION",
"NPM_VERSION",
"TZ",
"VERCEL",
"GITHUB_ACCESS_TOKEN"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"*.d.ts",
"**/package.json",
"bundlewatch.config.json",
"src/**",
"tsconfig.json",
"tsconfig.build.json",
"tsconfig.declarations.json",
"tsup.config.ts",
"!**/**/*.test.*",
"!**/test/**",
"!**/tests/**",
"!**/__tests__/**",
"!**/__mocks__/**",
"!**/__snapshots__/**",
"!coverage/**",
"!examples/**",
"!node_modules/**"
],
"outputMode": "new-only",
"outputs": ["dist/**"]
},
"dev": {
"dependsOn": [],
"cache": false
},
"dev:current": {
"cache": false,
"dependsOn": ["^build", "dev"],
"persistent": true
},
"clean": {
"dependsOn": [],
"cache": false
},
"test": {
"dependsOn": ["build"],
"inputs": [
"*.d.ts",
"**/package.json",
"bundlewatch.config.json",
"jest.*",
"src/**",
"tests/**",
"tsconfig.json",
"tsconfig.*.json",
"tsup.config.ts",
"!**/__snapshots__/**",
"!coverage/**",
"!examples/**",
"!node_modules/**"
],
"outputMode": "new-only",
"outputs": []
},
"test:cache:clear": {
"cache": false
},
"test:ci": {
"dependsOn": ["build"],
"inputs": [
"*.d.ts",
"**/package.json",
"bundlewatch.config.json",
"jest.*",
"src/**",
"tests/**",
"tsconfig.json",
"tsconfig.*.json",
"tsup.config.ts",
"!**/__snapshots__/**",
"!coverage/**",
"!examples/**",
"!node_modules/**"
],
"outputMode": "new-only",
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:publint": {
"dependsOn": ["build"],
"outputs": []
},
"lint:attw": {
"dependsOn": [],
"outputs": []
},
"bundlewatch": {
"dependsOn": ["build"],
"outputs": []
},
"format:check": {
"dependsOn": [],
"outputs": []
}
}
}