Skip to content

Commit b66058b

Browse files
author
Vladimir Safonkin
committed
Build index.js
1 parent 7323c4e commit b66058b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dist/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -7853,16 +7853,14 @@ function run() {
78537853
}
78547854
exports.run = run;
78557855
function getVersionFromGlobalJson(globalJsonPath) {
7856-
var _a;
7857-
const optionValues = ['latestFeature', 'latestPatch'];
78587856
let version = '';
78597857
const globalJson = JSON.parse(
78607858
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
78617859
fs.readFileSync(globalJsonPath, { encoding: 'utf8' }).trim());
78627860
if (globalJson.sdk && globalJson.sdk.version) {
78637861
version = globalJson.sdk.version;
7864-
const rollForward = (_a = globalJson.sdk.rollForward) !== null && _a !== void 0 ? _a : '';
7865-
if (optionValues.includes(rollForward)) {
7862+
const rollForward = globalJson.sdk.rollForward;
7863+
if (rollForward && rollForward === 'latestFeature') {
78667864
const [major, minor] = version.split('.');
78677865
version = `${major}.${minor}`;
78687866
}

0 commit comments

Comments
 (0)