File tree 8 files changed +16
-8
lines changed
8 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
67
67
var ts;
68
68
(function (ts) {
69
69
ts.versionMajorMinor = "3.7";
70
- ts.version = ts.versionMajorMinor + ".5 ";
70
+ ts.version = ts.versionMajorMinor + ".6 ";
71
71
})(ts || (ts = {}));
72
72
(function (ts) {
73
73
function tryGetNativeMap() {
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ var ts;
94
94
// If changing the text in this section, be sure to test `configureNightly` too.
95
95
ts.versionMajorMinor = "3.7";
96
96
/** The version of the TypeScript compiler release */
97
- ts.version = ts.versionMajorMinor + ".5 ";
97
+ ts.version = ts.versionMajorMinor + ".6 ";
98
98
})(ts || (ts = {}));
99
99
(function (ts) {
100
100
/* @internal */
@@ -135468,6 +135468,10 @@ var ts;
135468
135468
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
135469
135469
var _this = this;
135470
135470
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
+ }
135471
135475
var log = function (message) { return _this.projectService.logger.info(message); };
135472
135476
var errorLogs;
135473
135477
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ var ts;
244
244
// If changing the text in this section, be sure to test `configureNightly` too.
245
245
ts.versionMajorMinor = "3.7";
246
246
/** The version of the TypeScript compiler release */
247
- ts.version = ts.versionMajorMinor + ".5 ";
247
+ ts.version = ts.versionMajorMinor + ".6 ";
248
248
})(ts || (ts = {}));
249
249
(function (ts) {
250
250
/* @internal */
@@ -135618,6 +135618,10 @@ var ts;
135618
135618
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
135619
135619
var _this = this;
135620
135620
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
+ }
135621
135625
var log = function (message) { return _this.projectService.logger.info(message); };
135622
135626
var errorLogs;
135623
135627
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ var ts;
233
233
// If changing the text in this section, be sure to test `configureNightly` too.
234
234
ts.versionMajorMinor = "3.7";
235
235
/** The version of the TypeScript compiler release */
236
- ts.version = ts.versionMajorMinor + ".5 ";
236
+ ts.version = ts.versionMajorMinor + ".6 ";
237
237
})(ts || (ts = {}));
238
238
(function (ts) {
239
239
/* @internal */
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ var ts;
233
233
// If changing the text in this section, be sure to test `configureNightly` too.
234
234
ts.versionMajorMinor = "3.7";
235
235
/** The version of the TypeScript compiler release */
236
- ts.version = ts.versionMajorMinor + ".5 ";
236
+ ts.version = ts.versionMajorMinor + ".6 ";
237
237
})(ts || (ts = {}));
238
238
(function (ts) {
239
239
/* @internal */
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ var ts;
83
83
// If changing the text in this section, be sure to test `configureNightly` too.
84
84
ts.versionMajorMinor = "3.7";
85
85
/** The version of the TypeScript compiler release */
86
- ts.version = ts.versionMajorMinor + ".5 ";
86
+ ts.version = ts.versionMajorMinor + ".6 ";
87
87
})(ts || (ts = {}));
88
88
(function (ts) {
89
89
/* @internal */
Original file line number Diff line number Diff line change 2
2
"name" : " typescript" ,
3
3
"author" : " Microsoft Corp." ,
4
4
"homepage" : " https://www.typescriptlang.org/" ,
5
- "version" : " 3.7.5 " ,
5
+ "version" : " 3.7.6 " ,
6
6
"license" : " Apache-2.0" ,
7
7
"description" : " TypeScript is a language for application scale JavaScript development" ,
8
8
"keywords" : [
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ namespace ts {
3
3
// If changing the text in this section, be sure to test `configureNightly` too.
4
4
export const versionMajorMinor = "3.7";
5
5
/** The version of the TypeScript compiler release */
6
- export const version = `${ versionMajorMinor } .5` ;
6
+ export const version = `${versionMajorMinor}.6`;
7
7
}
8
8
9
9
namespace ts {
You can’t perform that action at this time.
0 commit comments