Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>dejanvasic85/renovate-config:nextjs"]
"extends": ["github>dejanvasic85/renovate-config:nextjs"],
"packageRules": [
{
"description": "pnpm 11.12.0 breaks pnpm/action-setup self-install (createFullPkgId integrity crash). See pnpm/action-setup#276. Unblock once pnpm ships a fix.",
"matchPackageNames": ["pnpm"],
"allowedVersions": "<11.12.0"
},
{
"description": "TypeScript 7 is the native (Go) compiler and ships platform binaries instead of the JS module Next.js loads, so next build fails to detect TypeScript. Unblock once Next.js supports the native compiler.",
"matchPackageNames": ["typescript"],
"allowedVersions": "<7.0.0"
}
]
}
Loading