Skip to content

Commit 30734a0

Browse files
Pin Node for Volta, bump version to 3.7.7, update LKG
1 parent f1005c5 commit 30734a0

File tree

8 files changed

+16
-13
lines changed

8 files changed

+16
-13
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 + ".6";
70+
ts.version = ts.versionMajorMinor + ".7";
7171
})(ts || (ts = {}));
7272
(function (ts) {
7373
function tryGetNativeMap() {

lib/tsserver.js

Lines changed: 3 additions & 3 deletions
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 + ".6";
97+
ts.version = ts.versionMajorMinor + ".7";
9898
})(ts || (ts = {}));
9999
(function (ts) {
100100
/* @internal */
@@ -135468,8 +135468,8 @@ 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");
135471+
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
135472+
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
135473135473
return;
135474135474
}
135475135475
var log = function (message) { return _this.projectService.logger.info(message); };

lib/tsserverlibrary.js

Lines changed: 3 additions & 3 deletions
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 + ".6";
247+
ts.version = ts.versionMajorMinor + ".7";
248248
})(ts || (ts = {}));
249249
(function (ts) {
250250
/* @internal */
@@ -135618,8 +135618,8 @@ 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");
135621+
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
135622+
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
135623135623
return;
135624135624
}
135625135625
var log = function (message) { return _this.projectService.logger.info(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 + ".6";
236+
ts.version = ts.versionMajorMinor + ".7";
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 + ".6";
236+
ts.version = ts.versionMajorMinor + ".7";
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 + ".6";
86+
ts.version = ts.versionMajorMinor + ".7";
8787
})(ts || (ts = {}));
8888
(function (ts) {
8989
/* @internal */

package.json

Lines changed: 5 additions & 2 deletions
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.6",
5+
"version": "3.7.7",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [
@@ -130,5 +130,8 @@
130130
"source-map-support": false,
131131
"inspector": false
132132
},
133-
"dependencies": {}
133+
"dependencies": {},
134+
"volta": {
135+
"node": "14.15.5"
136+
}
134137
}

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}.6`;
6+
export const version = `${versionMajorMinor}.7`;
77
}
88

99
namespace ts {

0 commit comments

Comments
 (0)