devdocs/renovate.json
Ross Barnie 01e5cf1b30 Lock better_errors gem to working versions
better_errors version 2.10.0 has a known bug
https://github.com/BetterErrors/better_errors/issues/516 whereby there
is a call to `require 'sassc'` without the gem specifiying `sassc` as a
dependency, so is not installed by dependent projects. The impact on
devdocs is that the application cannot start in development environment
without adding `sassc` as a dependency.
2023-05-11 17:35:58 +01:00

9 lines
183 B
JSON

{
"extends": ["github>freecodecamp/renovate-config"],
"packageRules": [
{
"matchPackageNames": ["better_errors"],
"allowedVersions": "!/^2\\.10\\.0$/"
}
]
}