forked from capricorn86/happy-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
48 lines (48 loc) · 1.17 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"compile": {
"dependsOn": ["^compile"],
"inputs": ["src/**", "src/tsconfig.json", "src/package.json"],
"outputs": ["lib/**", "cjs/**", "tmp/**"]
},
"global-registrator#compile": {
"dependsOn": ["happy-dom#compile"]
},
"jest-environment#compile": {
"dependsOn": ["happy-dom#compile"]
},
"integration-test#compile": {
"dependsOn": ["happy-dom#compile"]
},
"uncaught-exception-observer#compile": {
"dependsOn": ["happy-dom#compile"]
},
"happy-dom#test": {
"outputs": ["node_modules/vitest/**"]
},
"global-registrator#test": {
"dependsOn": ["happy-dom#compile", "global-registrator#compile"],
"outputs": ["tmp/**"]
},
"jest-environment#test": {
"dependsOn": ["happy-dom#compile", "jest-environment#compile"]
},
"integration-test#test": {
"dependsOn": ["happy-dom#compile", "integration-test#compile"]
},
"uncaught-exception-observer#test": {
"dependsOn": ["happy-dom#compile", "uncaught-exception-observer#compile"],
"outputs": ["tmp/**"]
},
"lint": {
"outputs": []
},
"lint:fix": {
"outputs": []
},
"test": {
"inputs": ["test/**"]
}
}
}