Skip to content

Commit e6f0de2

Browse files
committed
Bump version to 3.7.6 and LKG
1 parent 2be3fd8 commit e6f0de2

8 files changed

+16
-8
lines changed

lib/tsc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "3.7";
70-
ts.version = ts.versionMajorMinor + ".5";
70+
ts.version = ts.versionMajorMinor + ".6";
7171
})(ts || (ts = {}));
7272
(function (ts) {
7373
function tryGetNativeMap() {

lib/tsserver.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var ts;
9494
// If changing the text in this section, be sure to test `configureNightly` too.
9595
ts.versionMajorMinor = "3.7";
9696
/** The version of the TypeScript compiler release */
97-
ts.version = ts.versionMajorMinor + ".5";
97+
ts.version = ts.versionMajorMinor + ".6";
9898
})(ts || (ts = {}));
9999
(function (ts) {
100100
/* @internal */
@@ -135468,6 +135468,10 @@ var ts;
135468135468
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
135469135469
var _this = this;
135470135470
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
135471+
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
135472+
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
135473+
return;
135474+
}
135471135475
var log = function (message) { return _this.projectService.logger.info(message); };
135472135476
var errorLogs;
135473135477
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

lib/tsserverlibrary.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configureNightly` too.
245245
ts.versionMajorMinor = "3.7";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = ts.versionMajorMinor + ".5";
247+
ts.version = ts.versionMajorMinor + ".6";
248248
})(ts || (ts = {}));
249249
(function (ts) {
250250
/* @internal */
@@ -135618,6 +135618,10 @@ var ts;
135618135618
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
135619135619
var _this = this;
135620135620
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
135621+
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
135622+
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
135623+
return;
135624+
}
135621135625
var log = function (message) { return _this.projectService.logger.info(message); };
135622135626
var errorLogs;
135623135627
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ var ts;
233233
// If changing the text in this section, be sure to test `configureNightly` too.
234234
ts.versionMajorMinor = "3.7";
235235
/** The version of the TypeScript compiler release */
236-
ts.version = ts.versionMajorMinor + ".5";
236+
ts.version = ts.versionMajorMinor + ".6";
237237
})(ts || (ts = {}));
238238
(function (ts) {
239239
/* @internal */

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ var ts;
233233
// If changing the text in this section, be sure to test `configureNightly` too.
234234
ts.versionMajorMinor = "3.7";
235235
/** The version of the TypeScript compiler release */
236-
ts.version = ts.versionMajorMinor + ".5";
236+
ts.version = ts.versionMajorMinor + ".6";
237237
})(ts || (ts = {}));
238238
(function (ts) {
239239
/* @internal */

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ var ts;
8383
// If changing the text in this section, be sure to test `configureNightly` too.
8484
ts.versionMajorMinor = "3.7";
8585
/** The version of the TypeScript compiler release */
86-
ts.version = ts.versionMajorMinor + ".5";
86+
ts.version = ts.versionMajorMinor + ".6";
8787
})(ts || (ts = {}));
8888
(function (ts) {
8989
/* @internal */

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "https://www.typescriptlang.org/",
5-
"version": "3.7.5",
5+
"version": "3.7.6",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace ts {
33
// If changing the text in this section, be sure to test `configureNightly` too.
44
export const versionMajorMinor = "3.7";
55
/** The version of the TypeScript compiler release */
6-
export const version = `${versionMajorMinor}.5`;
6+
export const version = `${versionMajorMinor}.6`;
77
}
88

99
namespace ts {

0 commit comments

Comments
 (0)