forked from rrweb-io/rrweb
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathturbo.json
45 lines (45 loc) · 1019 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
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://turborepo.org/schema.json",
// These root workspace files are reused in workspaces and may affect their build output
"globalDependencies": [
".eslintrc.js",
".prettierrc",
"lerna.json",
"vite.config.defaults.ts",
"tsconfig.json"
],
"tasks": {
"prepack": {
"dependsOn": ["^prepack"],
"outputs": [
"lib/**",
"es/**",
"dist/**",
"typings/**",
".svelte-kit/**",
"types/**"
]
},
"test": {
"dependsOn": ["^prepack"],
"passThroughEnv": ["PUPPETEER_HEADLESS"]
},
"test:watch": {
"persistent": true,
"passThroughEnv": ["PUPPETEER_HEADLESS"]
},
"test:update": {
"dependsOn": ["^prepack"],
"passThroughEnv": ["PUPPETEER_HEADLESS"]
},
"dev": {
// "dependsOn": ["^prepack"],
"persistent": true,
"cache": false,
"passThroughEnv": ["CLEAR_DIST_DIR"]
},
"lint": {},
"typings": {},
"check-types": {}
}
}