Skip to content

Commit ad8c6c7

Browse files
Pin Node for Volta, bump version to 3.1.8, update LKG
1 parent 89f1a88 commit ad8c6c7

File tree

8 files changed

+17
-14
lines changed

8 files changed

+17
-14
lines changed

lib/tsc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6060
var ts;
6161
(function (ts) {
6262
ts.versionMajorMinor = "3.1";
63-
ts.version = ts.versionMajorMinor + ".7";
63+
ts.version = ts.versionMajorMinor + ".8";
6464
})(ts || (ts = {}));
6565
(function (ts) {
6666
ts.emptyArray = [];

lib/tsserver.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var ts;
8888
// If changing the text in this section, be sure to test `configureNightly` too.
8989
ts.versionMajorMinor = "3.1";
9090
/** The version of the TypeScript compiler release */
91-
ts.version = ts.versionMajorMinor + ".7";
91+
ts.version = ts.versionMajorMinor + ".8";
9292
})(ts || (ts = {}));
9393
(function (ts) {
9494
/* @internal */
@@ -118952,8 +118952,8 @@ var ts;
118952118952
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
118953118953
var _this = this;
118954118954
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");
118957118957
return;
118958118958
}
118959118959
var log = function (message) {

lib/tsserverlibrary.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var ts;
8484
// If changing the text in this section, be sure to test `configureNightly` too.
8585
ts.versionMajorMinor = "3.1";
8686
/** The version of the TypeScript compiler release */
87-
ts.version = ts.versionMajorMinor + ".7";
87+
ts.version = ts.versionMajorMinor + ".8";
8888
})(ts || (ts = {}));
8989
(function (ts) {
9090
/* @internal */
@@ -119126,8 +119126,8 @@ var ts;
119126119126
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
119127119127
var _this = this;
119128119128
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");
119131119131
return;
119132119132
}
119133119133
var log = function (message) {

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var ts;
7575
// If changing the text in this section, be sure to test `configureNightly` too.
7676
ts.versionMajorMinor = "3.1";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".7";
78+
ts.version = ts.versionMajorMinor + ".8";
7979
})(ts || (ts = {}));
8080
(function (ts) {
8181
/* @internal */

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var ts;
7575
// If changing the text in this section, be sure to test `configureNightly` too.
7676
ts.versionMajorMinor = "3.1";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".7";
78+
ts.version = ts.versionMajorMinor + ".8";
7979
})(ts || (ts = {}));
8080
(function (ts) {
8181
/* @internal */

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var ts;
8888
// If changing the text in this section, be sure to test `configureNightly` too.
8989
ts.versionMajorMinor = "3.1";
9090
/** The version of the TypeScript compiler release */
91-
ts.version = ts.versionMajorMinor + ".7";
91+
ts.version = ts.versionMajorMinor + ".8";
9292
})(ts || (ts = {}));
9393
(function (ts) {
9494
/* @internal */

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "http://typescriptlang.org/",
5-
"version": "3.1.7",
6-
"license": "Apache-2.0",
5+
"version": "3.1.8",
6+
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [
99
"TypeScript",
@@ -113,5 +113,8 @@
113113
"os": false,
114114
"path": false
115115
},
116-
"dependencies": {}
116+
"dependencies": {},
117+
"volta": {
118+
"node": "10.23.3"
119+
}
117120
}

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.1";
55
/** The version of the TypeScript compiler release */
6-
export const version = `${versionMajorMinor}.7`;
6+
export const version = `${versionMajorMinor}.8`;
77
}
88

99
namespace ts {

0 commit comments

Comments
 (0)