README
@atlaskit/renovate-config
This package contains the renovate config to be used in Products.
🎉 How to update the renovate config?
cd packages/monorepo-tooling/renovate-config- Run
yarn update-config. - Return to the root of
atlassian-frontend, you can docd -. - Run
yarn changeset.
- Select
@atlaskit/renovate-config. - Select a patch.
- Add a message about the changes.
- Create a PR against
master.
🎊 How to use the renovate config in product?
- Add
@atlaskit/renovate-configas adevDependenciesin the productpackage.json. - In the
renovate.json, useextendsto use your config & rules:
{
"packageRules": [
{
....
}
],
"branchPrefix": "renovate_",
"extends": [
"config:base",
"@atlaskit",
"@atlaskit:disable-other-upgrades-except-af"
],
"separateMajorMinor": false,
"rangeStrategy": "bump",
"prConcurrentLimit": 100,
"postUpdateOptions": [ "yarnDedupeFewer" ]
}