forked from rrweb-io/rrweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
50 lines (50 loc) · 1.15 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
{
"$schema": "https://turborepo.org/schema.json",
// These root workspace files are reused in workspaces and may affect their build output
"globalDependencies": [
".eslintrc.js",
".prettierrc",
"vite.config.defaults.ts",
"tsconfig.json"
],
"globalPassThroughEnv": ["PUPPETEER_HEADLESS"],
"tasks": {
"prepublish": {
"dependsOn": ["^prepublish", "//#references:update"],
"outputs": [
"lib/**",
"es/**",
"dist/**",
"typings/**",
".svelte-kit/**",
"types/**"
]
},
"test": {
"dependsOn": ["^prepublish"]
},
"test:watch": {
"persistent": true,
"cache": false
},
"test:update": {
"dependsOn": ["^prepublish"]
},
"dev": {
"dependsOn": ["prepublish", "^prepublish"],
"persistent": true,
"cache": false
},
"lint": {},
"check-types": {
"dependsOn": ["^prepublish"]
},
"//#references:update": {
"inputs": ["packages/*/package.json", "packages/plugins/*/package.json"],
"outputs": [
"packages/*/tsconfig.json",
"packages/plugins/*/tsconfig.json"
]
}
}
}