-
Notifications
You must be signed in to change notification settings - Fork 37
/
turbo.json
86 lines (86 loc) · 3.02 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
{
"globalDependencies": [
"turbo.json", "package.json", "package-lock.json"
],
"pipeline": {
"@cloudforet/utils#build": {
"outputs": ["./dist/**"],
"inputs": [
"src/**", "package.json", "package-lock.json", "tsconfig.build.json",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"@cloudforet/core-lib#build": {
"dependsOn": ["@cloudforet/mirinae#transpile"],
"outputs": ["./dist/**"],
"inputs": [
"src/**", "package.json", "package-lock.json", "tsconfig.build.json",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"web#build": {
"dependsOn": ["@cloudforet/mirinae#build", "@cloudforet/mirinae#transpile", "@cloudforet/utils#build", "@cloudforet/core-lib#build"],
"outputs": ["./dist/**"],
"inputs": [
"public/**", "!public/config/development.json",
"src/**", "!src/assets/**", "src/assets/images/**",
"package.json", "package-lock.json", "tsconfig.json",
"vite.config.js", "postcss.config.cjs", "tailwind.config.cjs",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"storybook#build": {
"outputs": ["./.storybook-static/**"],
"inputs": [
"../../packages/mirinae/src/**", "../../packages/mirinae/postcss.config.js", "../../packages/mirinae/tailwind.config.js", "../../packages/mirinae/package.json",
"tsconfig.json", "tailwind.config.js", "postcss.config.js", ".storybook/**/*",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"transpile": {
"dependsOn": ["^transpile"],
"outputs": ["./types/**"],
"cache": true
},
"@cloudforet/mirinae#transpile": {
"outputs": ["./types/**"],
"inputs": [
"src/**",
"package.json", "tsconfig.build.json", "vite.config.js",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"@cloudforet/mirinae#build": {
"outputs": ["./dist/**", "./css/**", "./types/**"],
"inputs": [
"src/**", "postcss.config.cjs", "tailwind.config.cjs",
"package.json", "tsconfig.build.json", "vite.config.js",
"!./**/__tests__/**", "!./**/*.babel", "!./**/LICENSE", "!./**/AUTHORS", "!./**/README.md", "!./**/CHANGELOG.md"
],
"cache": true
},
"dev": {
"cache": false
},
"lint": {
"dependsOn": ["^lint"],
"outputs": [],
"cache": false
},
"format": {
"dependsOn": ["^format"],
"outputs": [],
"cache": false
},
"test": {
"dependsOn": ["^test"],
"outputs": [],
"cache": false
}
}
}