Bump version to 3.9.8 and LKG

This commit is contained in:
Mine Starks 2021-01-04 16:17:37 -08:00
parent ea2f68b00f
commit 019e4c698a
8 changed files with 16 additions and 8 deletions

View file

@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
var ts;
(function (ts) {
ts.versionMajorMinor = "3.9";
ts.version = "3.9.7";
ts.version = "3.9.8";
function tryGetNativeMap() {
return typeof Map !== "undefined" && "entries" in Map.prototype ? Map : undefined;
}

View file

@ -94,7 +94,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
ts.version = "3.9.7";
ts.version = "3.9.8";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
@ -143754,6 +143754,10 @@ var ts;
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
var _this = this;
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
return;
}
var log = function (message) { return _this.projectService.logger.info(message); };
var errorLogs;
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

View file

@ -244,7 +244,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
ts.version = "3.9.7";
ts.version = "3.9.8";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
@ -143904,6 +143904,10 @@ var ts;
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
var _this = this;
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
return;
}
var log = function (message) { return _this.projectService.logger.info(message); };
var errorLogs;
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

View file

@ -244,7 +244,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
ts.version = "3.9.7";
ts.version = "3.9.8";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/

View file

@ -244,7 +244,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
ts.version = "3.9.7";
ts.version = "3.9.8";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/

View file

@ -83,7 +83,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
ts.version = "3.9.7";
ts.version = "3.9.8";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/

View file

@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "3.9.7",
"version": "3.9.8",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [

View file

@ -3,7 +3,7 @@ namespace ts {
// If changing the text in this section, be sure to test `configurePrerelease` too.
export const versionMajorMinor = "3.9";
/** The version of the TypeScript compiler release */
export const version = "3.9.7" as string;
export const version = "3.9.8" as string;
/**
* Type of objects whose values are all of the same type.