Skip to content

Commit

Permalink
Bump version to 3.7.6 and LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
minestarks committed Jan 5, 2021
1 parent 2be3fd8 commit e6f0de2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/tsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
var ts;
(function (ts) {
ts.versionMajorMinor = "3.7";
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
function tryGetNativeMap() {
Expand Down
6 changes: 5 additions & 1 deletion lib/tsserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
Expand Down Expand Up @@ -135468,6 +135468,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); };
Expand Down
6 changes: 5 additions & 1 deletion lib/tsserverlibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
Expand Down Expand Up @@ -135618,6 +135618,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); };
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
Expand Down
2 changes: 1 addition & 1 deletion lib/typescriptServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
Expand Down
2 changes: 1 addition & 1 deletion lib/typingsInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".5";
ts.version = ts.versionMajorMinor + ".6";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "3.7.5",
"version": "3.7.6",
"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/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace ts {
// If changing the text in this section, be sure to test `configureNightly` too.
export const versionMajorMinor = "3.7";
/** The version of the TypeScript compiler release */
export const version = `${versionMajorMinor}.5`;
export const version = `${versionMajorMinor}.6`;
}

namespace ts {
Expand Down

0 comments on commit e6f0de2

Please sign in to comment.