mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 17:16:25 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
33 lines
957 B
TypeScript
33 lines
957 B
TypeScript
import semver, { ReleaseType } from 'semver';
|
|
import { logger } from '../../../logger';
|
|
import { regEx } from '../../../util/regex';
|
|
import type { BumpPackageVersionResult } from '../types';
|
|
|
|
export function bumpPackageVersion(
|
|
content: string,
|
|
currentValue: string,
|
|
bumpVersion: ReleaseType | string
|
|
): BumpPackageVersionResult {
|
|
logger.debug(
|
|
{ bumpVersion, currentValue },
|
|
'Checking if we should bump build.sbt version'
|
|
);
|
|
let bumpedContent = content;
|
|
const bumpedVersion = semver.inc(currentValue, bumpVersion as ReleaseType);
|
|
if (!bumpedVersion) {
|
|
logger.warn('Version incremental failed');
|
|
return { bumpedContent };
|
|
}
|
|
bumpedContent = content.replace(
|
|
regEx(/^(version\s*:=\s*).*$/m),
|
|
`$1"${bumpedVersion}"`
|
|
);
|
|
|
|
if (bumpedContent === content) {
|
|
logger.debug('Version was already bumped');
|
|
} else {
|
|
logger.debug({ bumpedVersion }, 'Bumped build.sbt version');
|
|
}
|
|
|
|
return { bumpedContent };
|
|
}
|