mirror of
https://github.com/withastro/astro.git
synced 2025-03-10 23:01:26 -05:00
* fix(deps): update dependency tailwindcss to v4 * Discard changes to packages/integrations/tailwind/package.json * fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
41 lines
1 KiB
Text
41 lines
1 KiB
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/**"],
|
|
"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",
|
|
],
|
|
}
|