mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
6fc29e3c24
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: bluwy <bjornlu.dev@gmail.com>
35 lines
946 B
Text
35 lines
946 B
Text
{
|
|
"$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/**"],
|
|
"ignoreDeps": [
|
|
// manually bumping deps
|
|
"@biomejs/biome",
|
|
"@types/node",
|
|
"@preact/preset-vite", // v2.8.3 starts to use Vite's esbuild for perf, but this conflicts with the react plugin
|
|
"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",
|
|
],
|
|
}
|