File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -7853,16 +7853,14 @@ function run() {
7853
7853
}
7854
7854
exports.run = run;
7855
7855
function getVersionFromGlobalJson(globalJsonPath) {
7856
- var _a;
7857
- const optionValues = ['latestFeature', 'latestPatch'];
7858
7856
let version = '';
7859
7857
const globalJson = JSON.parse(
7860
7858
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
7861
7859
fs.readFileSync(globalJsonPath, { encoding: 'utf8' }).trim());
7862
7860
if (globalJson.sdk && globalJson.sdk.version) {
7863
7861
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' ) {
7866
7864
const [major, minor] = version.split('.');
7867
7865
version = `${major}.${minor}`;
7868
7866
}
You can’t perform that action at this time.
0 commit comments