-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
96 lines (96 loc) · 2.32 KB
/
turbo.json
File metadata and controls
96 lines (96 loc) · 2.32 KB
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
87
88
89
90
91
92
93
94
95
96
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"inputs": [
"src/**",
"_posts/**",
"scripts/**",
"next.config.mjs",
"tsconfig.json",
"tailwind.config.cjs"
],
"outputs": [".next/**", "out/**"]
},
"jest:run": {
"inputs": ["src/**/*.{ts,tsx}", "jest.config.ts", "jest.setup.ts"],
"outputs": ["coverage/**"]
},
"lint:eslint": {
"inputs": [
"src/**/*.{ts,tsx}",
"scripts/**/*.{ts,mjs}",
"eslint.config.js"
],
"outputs": []
},
"lint:typeCheck": {
"inputs": [
"src/**/*.{ts,tsx}",
"tsconfig.json",
"next.config.mjs",
"next-env.d.ts"
],
"outputs": [".next/types/**", ".next/dev/types/**", "next-env.d.ts"]
},
"lint:stylelint": {
"inputs": ["src/**/*.css", ".stylelintrc.cjs"],
"outputs": []
},
"lint:prettier": {
"inputs": [
"src/**/*.{json,html,yml,tsx,ts,js,jsx,css}",
"_posts/**/*.{mdx,md}",
".prettierrc.cjs"
],
"outputs": []
},
"lint:markdown": {
"inputs": ["_posts/**/*.mdx", ".markdownlint.cjs"],
"outputs": []
},
"lint:cspell": {
"inputs": [
"cspell.json",
"cspell.posts.json",
"src/**",
"_posts/**",
"scripts/**",
".agents/**"
],
"outputs": []
},
"e2e:build": {
"inputs": [
"src/**",
"_posts/**",
"scripts/**",
"next.config.mjs",
"tsconfig.json",
"tailwind.config.cjs"
],
"env": ["NEXT_PUBLIC_E2E"],
"outputs": [".next/**", "out/**"]
},
"e2e": {
"dependsOn": ["e2e:build"],
"inputs": ["e2e/**", "playwright.config.ts"],
"outputs": ["playwright-report/**", "e2e/__snapshots__/**"]
},
"e2e:update:run": {
"dependsOn": ["e2e:build"],
"inputs": ["e2e/**", "playwright.config.ts"],
"outputs": ["e2e/__snapshots__/**"]
},
"e2e:update:screen:run": {
"dependsOn": ["e2e:build"],
"inputs": ["e2e/**", "playwright.config.ts"],
"outputs": ["e2e/__snapshots__/**"]
},
"e2e:update:dom:run": {
"dependsOn": ["e2e:build"],
"inputs": ["e2e/**", "playwright.config.ts"],
"outputs": ["e2e/__snapshots__/**"]
}
}
}