0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/.github/renovate.json5

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
708 B
Text
Raw Normal View History

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:weekly",
"group:allNonMajor",
":disablePeerDependencies",
"regexManagers:biomeVersions",
],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"ignorePaths": ["**/node_modules/**"],
"ignoreDeps": [
2024-04-19 11:11:20 -05:00
// manually bumping deps
"@biomejs/biome",
"@types/node",
"preact-render-to-string", // https://github.com/withastro/astro/pull/10200
"sharp",
2024-04-19 11:11:20 -05:00
// manually bumping workflow actions
"actions/labeler",
// ignore "engines" update
"node",
"npm",
"pnpm",
// follow vite deps version
"postcss-load-config",
],
}