forked from withastro/astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
41 lines (38 loc) · 1 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:weekly",
"group:allNonMajor",
":disablePeerDependencies",
"regexManagers:biomeVersions",
],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"postUpdateOptions": ["pnpmDedupe"],
"ignorePaths": ["**/node_modules/**"],
"packageRules": [
// TODO: remove once the tailwind integration is removed
{
"matchPackageNames": ["tailwindcss"],
"ignorePaths": ["packages/integrations/tailwind"]
}
],
"ignoreDeps": [
// manually bumping deps
"@biomejs/biome",
"@types/node",
"astro-embed", // TODO: investigate upgrade (zod import issues with atproto)
"drizzle-orm", // TODO: investigate upgrade (has type issues)
"sharp",
// manually bumping workflow actions
"actions/labeler",
// ignore "engines" update
"node",
"npm",
"pnpm",
// follow vite deps version
"postcss-load-config",
"esbuild",
],
}