Skip to content

Commit

Permalink
docs: composer supports update-lockfile rangeStrategy (#13987)
Browse files Browse the repository at this point in the history
  • Loading branch information
herndlm committed Feb 3, 2022
1 parent d10b2ce commit 3d9cbee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/versioning/composer/index.ts
Expand Up @@ -14,7 +14,13 @@ export const urls = [
'https://semver.mwl.be',
];
export const supportsRanges = true;
export const supportedRangeStrategies = ['bump', 'extend', 'pin', 'replace'];
export const supportedRangeStrategies = [
'bump',
'extend',
'pin',
'replace',
'update-lockfile',
];

function getVersionParts(input: string): [string, string] {
const versionParts = input.split('-');
Expand Down

0 comments on commit 3d9cbee

Please sign in to comment.