-
Notifications
You must be signed in to change notification settings - Fork 994
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(renovate): audit
renovate.json
(#8856)
I'm in the process of improving our renovate config. I decided to start by auditing the `renovate.json` file: - instead of manually listing every redwoodjs package, use a pattern. this'll save us from having to manually add new ones - some dependencies don't need to be ignored anymore; I removed them from the ignore list and upgraded them - some ignored dependencies aren't even in the framework anymore - some ignored dependencies had a patch we could upgrade to so I did so
- Loading branch information
Showing
9 changed files
with
172 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,43 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"postUpdateOptions": ["yarnDedupeHighest"], | ||
"assignees": ["@jtoar"], | ||
"labels": ["release:chore"], | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
|
||
"extends": [ | ||
"config:base" | ||
], | ||
|
||
"postUpdateOptions": [ | ||
"yarnDedupeHighest" | ||
], | ||
|
||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"automerge": true | ||
}, | ||
|
||
{ | ||
"matchPackageNames": [ | ||
"boxen", | ||
"chalk", | ||
"camelcase", | ||
"configstore", | ||
"decamelize", | ||
"execa", | ||
"humanize-string", | ||
"latest-version", | ||
"pascalcase", | ||
"pretty-bytes", | ||
"pretty-ms", | ||
"tempy", | ||
"terminal-link" | ||
], | ||
"matchPackagePatterns": [ | ||
"^@redwoodjs/" | ||
], | ||
"enabled": false | ||
} | ||
], | ||
"ignoreDeps": [ | ||
"boxen", | ||
"configstore", | ||
"decamelize", | ||
"execa", | ||
"humanize-string", | ||
"latest-version", | ||
"ora", | ||
"tempy", | ||
"terminal-link", | ||
"chalk", | ||
"pascalcase", | ||
"@redwoodjs/api", | ||
"@redwoodjs/api-server", | ||
"@redwoodjs/auth", | ||
"@redwoodjs/cli", | ||
"@redwoodjs/codemods", | ||
"@redwoodjs/core", | ||
"@redwoodjs/create-redwood-app", | ||
"@redwoodjs/eslint-config", | ||
"@redwoodjs/forms", | ||
"@redwoodjs/graphql-server", | ||
"@redwoodjs/internal", | ||
"@redwoodjs/prerender", | ||
"@redwoodjs/project-config", | ||
"@redwoodjs/record", | ||
"@redwoodjs/router", | ||
"@redwoodjs/structure", | ||
"@redwoodjs/telemetry", | ||
"@redwoodjs/testing", | ||
"@redwoodjs/web", | ||
"lru-cache", | ||
"@types/lru-cache", | ||
"pretty-bytes", | ||
"is-port-reachable", | ||
"pretty-ms", | ||
"camelcase", | ||
"sort-package-json", | ||
"@redwoodjs/vite" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.