-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy path.renovaterc.json
More file actions
116 lines (116 loc) · 3.06 KB
/
Copy path.renovaterc.json
File metadata and controls
116 lines (116 loc) · 3.06 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
114
115
116
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "security:minimumReleaseAgeNpm", "workarounds:typesNodeVersioning"],
"prBodyTemplate": "{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{controls}}}",
"platformCommit": "auto",
"enabledManagers": ["npm", "github-actions"],
"timezone": "America/Los_Angeles",
"schedule": ["before 5am every weekday"],
"labels": ["dependencies"],
"ignoreDeps": [
"@types/node",
"@types/react",
"@types/react-dom",
"node",
"npm",
"puppeteer",
"react",
"react-dom",
"typescript"
],
"ignorePaths": ["examples/**"],
"packageRules": [
{
"groupName": "Linting",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": [
"@cspell/**",
"@morev/stylelint-testing-library",
"@prettier/**",
"globals",
"husky",
"lint-staged",
"markdownlint-cli2",
"packages:linters",
"prettier"
]
},
{
"groupName": "Build",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["autoprefixer", "packages:vite", "postcss", "sass-embedded", "tailwindcss"]
},
{
"groupName": "Build (Monorepo)",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["lerna", "turbo"]
},
{
"groupName": "Build (Tokens)",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["@tokens-studio/**", "style-dictionary"]
},
{
"groupName": "Util Scripts",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": [
"@inquirer/**",
"concurrently",
"cpy",
"cpy-cli",
"globby",
"rimraf",
"@types/semver",
"semver",
"yargs"
]
},
{
"groupName": "Tests (Browser)",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["!@vitest/eslint-plugin", "@vitest/**", "happy-dom", "playwright", "vitest"]
},
{
"groupName": "Tests (A11y)",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["axe-core", "jest-axe", "@types/jest-axe"]
},
{
"groupName": "Tests (Visual)",
"matchDepTypes": ["devDependencies"],
"matchPackageNames": ["chromatic", "@storybook/**", "storybook**"]
},
{
"groupName": "Calcite Components (Core Deps)",
"matchDepTypes": ["dependencies"],
"matchPackageNames": [
"@floating-ui/**",
"@lit/**",
"@types/sortablejs",
"color",
"composed-offset-position",
"es-toolkit",
"focus-trap",
"interactjs",
"lit",
"sortablejs",
"tabbable",
"timezone-groups",
"type-fest"
]
},
{
"groupName": "ArcGIS",
"matchPackageNames": ["@arcgis/**"],
"rangeStrategy": "bump",
"ignoreUnstable": false,
"respectLatest": false
},
{
"matchPackageNames": ["*"],
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"addLabels": ["chore"]
}
]
}