Skip to content

Commit

Permalink
fix: replace vso vsts task lib (#19775)
Browse files Browse the repository at this point in the history
Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
  • Loading branch information
jessehouwing and JamieMagee committed Jan 11, 2023
1 parent 054e157 commit 9bb46ae
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lib/config/presets/internal/replacements.ts
Expand Up @@ -26,6 +26,8 @@ export const presets: Record<string, Preset> = {
'replacements:react-scripts-ts-to-react-scripts',
'replacements:renovate-pep440-to-renovatebot-pep440',
'replacements:rollup-node-resolve-to-scoped',
'replacements:vso-task-lib-to-azure-pipelines-task-lib',
'replacements:vsts-task-lib-to-azure-pipelines-task-lib',
'replacements:xmldom-to-scoped',
],
},
Expand Down Expand Up @@ -619,6 +621,30 @@ export const presets: Record<string, Preset> = {
},
],
},
'vso-task-lib-to-azure-pipelines-task-lib': {
description:
'The `vso-task-lib` package is now published as `azure-pipelines-task-lib`.',
packageRules: [
{
matchDatasources: ['npm'],
matchPackageNames: ['vso-task-lib'],
replacementName: 'azure-pipelines-task-lib',
replacementVersion: '3.4.0',
},
],
},
'vsts-task-lib-to-azure-pipelines-task-lib': {
description:
'The `vsts-task-lib` package is now published as `azure-pipelines-task-lib`.',
packageRules: [
{
matchDatasources: ['npm'],
matchPackageNames: ['vsts-task-lib'],
replacementName: 'azure-pipelines-task-lib',
replacementVersion: '3.4.0',
},
],
},
'xmldom-to-scoped': {
description: 'The `xmldom` package is now published as `@xmldom/xmldom`.',
packageRules: [
Expand Down

0 comments on commit 9bb46ae

Please sign in to comment.