File tree Expand file tree Collapse file tree 8 files changed +17
-14
lines changed Expand file tree Collapse file tree 8 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
60
60
var ts;
61
61
(function (ts) {
62
62
ts.versionMajorMinor = "3.1";
63
- ts.version = ts.versionMajorMinor + ".7 ";
63
+ ts.version = ts.versionMajorMinor + ".8 ";
64
64
})(ts || (ts = {}));
65
65
(function (ts) {
66
66
ts.emptyArray = [];
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ var ts;
88
88
// If changing the text in this section, be sure to test `configureNightly` too.
89
89
ts.versionMajorMinor = "3.1";
90
90
/** The version of the TypeScript compiler release */
91
- ts.version = ts.versionMajorMinor + ".7 ";
91
+ ts.version = ts.versionMajorMinor + ".8 ";
92
92
})(ts || (ts = {}));
93
93
(function (ts) {
94
94
/* @internal */
@@ -118952,8 +118952,8 @@ var ts;
118952
118952
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
118953
118953
var _this = this;
118954
118954
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
118955
- if (ts.parsePackageName(pluginConfigEntry.name).rest) {
118956
- this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
118955
+ if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
118956
+ this.projectService.logger.info("Skipped loading plugin " + ( pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
118957
118957
return;
118958
118958
}
118959
118959
var log = function (message) {
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ var ts;
84
84
// If changing the text in this section, be sure to test `configureNightly` too.
85
85
ts.versionMajorMinor = "3.1";
86
86
/** The version of the TypeScript compiler release */
87
- ts.version = ts.versionMajorMinor + ".7 ";
87
+ ts.version = ts.versionMajorMinor + ".8 ";
88
88
})(ts || (ts = {}));
89
89
(function (ts) {
90
90
/* @internal */
@@ -119126,8 +119126,8 @@ var ts;
119126
119126
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
119127
119127
var _this = this;
119128
119128
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
119129
- if (ts.parsePackageName(pluginConfigEntry.name).rest) {
119130
- this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
119129
+ if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
119130
+ this.projectService.logger.info("Skipped loading plugin " + ( pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
119131
119131
return;
119132
119132
}
119133
119133
var log = function (message) {
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ var ts;
75
75
// If changing the text in this section, be sure to test `configureNightly` too.
76
76
ts.versionMajorMinor = "3.1";
77
77
/** The version of the TypeScript compiler release */
78
- ts.version = ts.versionMajorMinor + ".7 ";
78
+ ts.version = ts.versionMajorMinor + ".8 ";
79
79
})(ts || (ts = {}));
80
80
(function (ts) {
81
81
/* @internal */
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ var ts;
75
75
// If changing the text in this section, be sure to test `configureNightly` too.
76
76
ts.versionMajorMinor = "3.1";
77
77
/** The version of the TypeScript compiler release */
78
- ts.version = ts.versionMajorMinor + ".7 ";
78
+ ts.version = ts.versionMajorMinor + ".8 ";
79
79
})(ts || (ts = {}));
80
80
(function (ts) {
81
81
/* @internal */
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ var ts;
88
88
// If changing the text in this section, be sure to test `configureNightly` too.
89
89
ts.versionMajorMinor = "3.1";
90
90
/** The version of the TypeScript compiler release */
91
- ts.version = ts.versionMajorMinor + ".7 ";
91
+ ts.version = ts.versionMajorMinor + ".8 ";
92
92
})(ts || (ts = {}));
93
93
(function (ts) {
94
94
/* @internal */
Original file line number Diff line number Diff line change 2
2
"name" : " typescript" ,
3
3
"author" : " Microsoft Corp." ,
4
4
"homepage" : " http://typescriptlang.org/" ,
5
- "version" : " 3.1.7 " ,
6
- "license" : " Apache-2.0" ,
5
+ "version" : " 3.1.8 " ,
6
+ "license" : " Apache-2.0" ,
7
7
"description" : " TypeScript is a language for application scale JavaScript development" ,
8
8
"keywords" : [
9
9
" TypeScript" ,
113
113
"os" : false ,
114
114
"path" : false
115
115
},
116
- "dependencies" : {}
116
+ "dependencies" : {},
117
+ "volta" : {
118
+ "node" : " 10.23.3"
119
+ }
117
120
}
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.1";
5
5
/** The version of the TypeScript compiler release */
6
- export const version = `${ versionMajorMinor } .7` ;
6
+ export const version = `${versionMajorMinor}.8`;
7
7
}
8
8
9
9
namespace ts {
You can’t perform that action at this time.
0 commit comments