-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
113 lines (113 loc) · 3.82 KB
/
Copy pathrenovate.json
File metadata and controls
113 lines (113 loc) · 3.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabled": false,
"baseBranches": ["develop"],
"labels": ["dependencies"],
"pnpm": {
"enabled": true
},
"packageRules": [
{
"description": "catalog: TypeScript",
"matchFileNames": ["pnpm-workspace.yaml", "package.json", "packages/*/package.json"],
"matchPackageNames": ["typescript"],
"groupName": "catalog-typescript",
"addLabels": ["root"]
},
{
"description": "catalog: ESLint",
"matchFileNames": ["pnpm-workspace.yaml", "package.json", "packages/*/package.json"],
"matchPackageNames": ["eslint", "typescript-eslint"],
"groupName": "catalog-eslint",
"addLabels": ["root"]
},
{
"description": "catalog: Testing",
"matchFileNames": ["pnpm-workspace.yaml", "package.json", "packages/*/package.json"],
"matchPackageNames": ["vitest", "@vitest/**"],
"groupName": "catalog-testing",
"addLabels": ["root"]
},
{
"description": "server: @types/*",
"matchFileNames": ["packages/server/package.json"],
"matchPackagePatterns": ["^@types/"],
"groupName": "server-types",
"addLabels": ["server"]
},
{
"description": "server: all other deps",
"matchFileNames": ["packages/server/package.json"],
"matchPackagePatterns": [".*"],
"excludePackageNames": ["typescript", "eslint", "typescript-eslint", "vitest", "@vitest/**"],
"excludePackagePatterns": ["^@types/"],
"addLabels": ["server"]
},
{
"description": "web: TanStack (excluding router-vite-plugin)",
"matchFileNames": ["packages/web/package.json"],
"matchPackagePatterns": ["^@tanstack/"],
"excludePackageNames": ["@tanstack/router-vite-plugin"],
"groupName": "web-tanstack",
"addLabels": ["web"]
},
{
"description": "web: Vite build tooling",
"matchFileNames": ["packages/web/package.json"],
"matchPackageNames": ["vite", "@tanstack/router-vite-plugin"],
"matchPackagePatterns": ["^@vitejs/"],
"groupName": "web-vite-build",
"addLabels": ["web"]
},
{
"description": "web: Testing",
"matchFileNames": ["packages/web/package.json"],
"matchPackageNames": ["jsdom"],
"matchPackagePatterns": ["^@testing-library/"],
"groupName": "web-testing",
"addLabels": ["web"]
},
{
"description": "web: React",
"matchFileNames": ["packages/web/package.json"],
"matchPackageNames": ["react", "react-dom", "@types/react", "@types/react-dom"],
"groupName": "web-react",
"addLabels": ["web"]
},
{
"description": "web: @types/* (excluding React types)",
"matchFileNames": ["packages/web/package.json"],
"matchPackagePatterns": ["^@types/"],
"excludePackageNames": ["@types/react", "@types/react-dom"],
"groupName": "web-types",
"addLabels": ["web"]
},
{
"description": "web: all other deps",
"matchFileNames": ["packages/web/package.json"],
"matchPackagePatterns": [".*"],
"excludePackageNames": [
"typescript", "eslint", "typescript-eslint", "vitest",
"react", "react-dom", "@types/react", "@types/react-dom",
"jsdom", "vite", "@tanstack/router-vite-plugin"
],
"excludePackagePatterns": ["^@tanstack/", "^@vitejs/", "^@testing-library/", "^@types/", "^@vitest/"],
"addLabels": ["web"]
},
{
"description": "GitHub Actions",
"matchManagers": ["github-actions"],
"addLabels": ["github-actions"],
"groupName": "github-actions"
},
{
"description": "Docker",
"matchManagers": ["dockerfile", "docker-compose"],
"addLabels": ["docker"],
"groupName": "docker"
}
],
"schedule": ["on monday"],
"prCreation": "not-pending"
}