File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -49,16 +49,15 @@ export async function run() {
49
49
}
50
50
51
51
function getVersionFromGlobalJson ( globalJsonPath : string ) : string {
52
- const optionValues = [ 'latestFeature' , 'latestPatch' ] ;
53
52
let version : string = '' ;
54
53
const globalJson = JSON . parse (
55
54
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
56
55
fs . readFileSync ( globalJsonPath , { encoding : 'utf8' } ) . trim ( )
57
56
) ;
58
57
if ( globalJson . sdk && globalJson . sdk . version ) {
59
58
version = globalJson . sdk . version ;
60
- const rollForward = globalJson . sdk . rollForward ?? '' ;
61
- if ( optionValues . includes ( rollForward ) ) {
59
+ const rollForward = globalJson . sdk . rollForward ;
60
+ if ( rollForward && rollForward === 'latestFeature' ) {
62
61
const [ major , minor ] = version . split ( '.' ) ;
63
62
version = `${ major } .${ minor } ` ;
64
63
}
You can’t perform that action at this time.
0 commit comments