mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
016e647390
Changes `rangeStrategy` default value from `'replace'` to `'auto'`. Also changes `auto` behavior so that `update-lockfile` is preferred if the manager supports the `updateLockedDependency()` function. Closes #19800 BREAKING CHANGE: Renovate will now default to updating locked dependency versions. To revert to previous behavior, configure rangeStrategy=replace.
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import type { RangeStrategy } from '../../../types';
|
|
import type { RangeConfig } from '../types';
|
|
|
|
export function getRangeStrategy({
|
|
rangeStrategy,
|
|
}: RangeConfig): RangeStrategy {
|
|
return rangeStrategy === 'auto' ? 'bump' : rangeStrategy;
|
|
}
|