diff --git a/website/docs/configuration-options.md b/website/docs/configuration-options.md index d3d08689128ee8b2c3ff5482b887a66aadd45b20..aff7df1af9fb96613b6f44bf9a990b915c86370f 100644 --- a/website/docs/configuration-options.md +++ b/website/docs/configuration-options.md @@ -487,12 +487,12 @@ The default behaviour for Renovate is to only use group names for branches and P ## lockFileMaintenance -By setting enabled=true, this means that the default behaviour is to "maintain" lock files for each `package.json` if they exist already. "Maintaining" a lock file means recreating it to get an up-to-date version and committing that. Supported lock files include `package-lock.json` (npm >= 5) and `yarn.lock` (yarn). +This feature can be used to "maintain" lock files for each `package.json` if they exist already. "Maintaining" a lock file means recreating it to get an up-to-date version and committing that. Supported lock files include `package-lock.json` (npm >= 5) and `yarn.lock` (yarn). -If you wish to disable this feature then you could add this to your configuration: +This feature is off by default. If you wish to enable this feature then you could add this to your configuration: ```json - "lockFileMaintenance": { "enabled": false } + "lockFileMaintenance": { "enabled": true } ``` To reduce "noise" in the repository, it defaults its schedule to "before 5am on monday", i.e. to achieve once per week semantics. Renovate may run a few times within that time - even possibly updating the lock file more than once - but it hopefully leaves enough time for tests to run and automerge to apply, if configured.