forked from vidstack/player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
35 lines (35 loc) · 769 Bytes
/
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
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"analyze": {
"dependsOn": ["clean"],
"outputs": [
"dist-npm/analyze.json",
"dist-npm/vscode.html-data.json",
"dist-npm/vue.d.ts",
"dist-npm/svelte.d.ts",
"dist-npm/solid.d.ts"
]
},
"build": {
"dependsOn": ["clean", "^build"],
"outputs": ["cdn/**", "dist-npm/**", "styles/**"]
},
"build:cdn": {
"outputs": ["dist-cdn/**"]
},
"clean": {
"cache": false
},
"types": {
"dependsOn": ["clean"],
"outputs": ["types/**", "dist-npm/**/*.d.ts", "tsconfig.build.tsbuildinfo"]
},
"format": {
"inputs": ["src/**"]
},
"test": {
"inputs": ["src/**"]
}
}
}