Update renovate config to ignore major updates to react

This commit is contained in:
Bill Thornton
2022-08-05 10:29:32 -04:00
parent d54dd1b85c
commit 78abde05aa
3 changed files with 14 additions and 8 deletions
+12 -6
View File
@@ -1,7 +1,13 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["github>jellyfin/.github//renovate-presets/nodejs", ":semanticCommitsDisabled"],
"github>jellyfin/.github//renovate-presets/nodejs", "packageRules": [
":semanticCommitsDisabled" {
] "description": "Disable major updates for React",
} "matchPackagePrefixes": ["react"],
"matchPackageNames": ["@types/react", "@types/react-helmet", "@types/react-router-dom"],
"matchUpdateTypes": "major",
"enabled": false
}
]
}
+1 -1
View File
@@ -4,4 +4,4 @@
"singleQuote": true, "singleQuote": true,
"jsxSingleQuote": true, "jsxSingleQuote": true,
"trailingComma": "none" "trailingComma": "none"
} }
+1 -1
View File
@@ -63,4 +63,4 @@
"typescript": "4.7.4", "typescript": "4.7.4",
"typescript-plugin-css-modules": "3.4.0" "typescript-plugin-css-modules": "3.4.0"
} }
} }