Improve condition

This commit is contained in:
Vladimir Safonkin
2021-08-20 17:28:10 +03:00
parent f3822c3b02
commit 2c3efd1f04
2 changed files with 7 additions and 8 deletions

View File

@ -49,6 +49,7 @@ export async function run() {
}
function getVersionFromGlobalJson(globalJsonPath: string): string {
const optionValues = ['latestFeature', 'latestPatch']
let version: string = '';
const globalJson = JSON.parse(
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
@ -56,11 +57,8 @@ function getVersionFromGlobalJson(globalJsonPath: string): string {
);
if (globalJson.sdk && globalJson.sdk.version) {
version = globalJson.sdk.version;
const rollForward = globalJson.sdk.rollForward;
if (
rollForward &&
(rollForward === 'latestFeature' || rollForward === 'latestPatch')
) {
const rollForward = globalJson.sdk.rollForward ?? '';
if (optionValues.includes(rollForward)) {
const [major, minor] = version.split('.');
version = `${major}.${minor}`;
}