Skip to content

Commit

Permalink
Bump version to 3.9.9 and LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Feb 10, 2021
1 parent ee71355 commit 9b778b3
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion lib/tsc.js
Expand Up @@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
var ts;
(function (ts) {
ts.versionMajorMinor = "3.9";
ts.version = "3.9.8";
ts.version = "3.9.9";
function tryGetNativeMap() {
return typeof Map !== "undefined" && "entries" in Map.prototype ? Map : undefined;
}
Expand Down
6 changes: 3 additions & 3 deletions lib/tsserver.js
Expand Up @@ -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.8";
ts.version = "3.9.9";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
Expand Down Expand Up @@ -143754,8 +143754,8 @@ 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");
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
return;
}
var log = function (message) { return _this.projectService.logger.info(message); };
Expand Down
6 changes: 3 additions & 3 deletions lib/tsserverlibrary.js
Expand Up @@ -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.8";
ts.version = "3.9.9";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
Expand Down Expand Up @@ -143904,8 +143904,8 @@ 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");
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
return;
}
var log = function (message) { return _this.projectService.logger.info(message); };
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.js
Expand Up @@ -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.8";
ts.version = "3.9.9";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/typescriptServices.js
Expand Up @@ -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.8";
ts.version = "3.9.9";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/typingsInstaller.js
Expand Up @@ -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.8";
ts.version = "3.9.9";
/**
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "3.9.8",
"version": "3.9.9",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/corePublic.ts
Expand Up @@ -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.8" as string;
export const version = "3.9.9" as string;

/**
* Type of objects whose values are all of the same type.
Expand Down

0 comments on commit 9b778b3

Please sign in to comment.