File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 67286728 "generate-options-schema" : " ts-node -T ./.scripts/generateOptionsSchema.ts" ,
67296729 "copy-walkthrough-media" : " ts-node -T ./.scripts/copyWalkthruMedia.ts" ,
67306730 "translations-export" : " yarn install && yarn prep && yarn generate-native-strings && gulp translations-export" ,
6731- "translations-generate" : " set NODE_OPTIONS=--no-experimental-fetch && gulp translations-generate" ,
6731+ "translations-generate" : " gulp translations-generate" ,
67326732 "translations-import" : " gulp translations-import" ,
67336733 "import-edge-strings" : " ts-node -T ./.scripts/import_edge_strings.ts" ,
67346734 "prep:dts" : " yarn verify dts --quiet || (npx @vscode/dts main && npx @vscode/dts dev && yarn verify proposals)" ,
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ function vsDisplayNameWithSuffix(installation: vswhere.Installation): string {
126126 } else if ( installation . channelId . endsWith ( '.IntPreview' ) ) {
127127 return 'Int Preview' ;
128128 } else if ( installation . channelId . endsWith ( '.Preview' ) ) {
129+ if ( parseInt ( installation . installationVersion ) >= 18 ) {
130+ return 'Insiders' ;
131+ }
129132 return 'Preview' ;
130133 }
131134 return '' ;
You can’t perform that action at this time.
0 commit comments