Pin Node for Volta, bump version to 3.1.8, update LKG

This commit is contained in:
Daniel Rosenwasser 2021-02-10 12:09:30 -08:00
parent 89f1a8854c
commit ad8c6c7e41
8 changed files with 17 additions and 14 deletions

View File

@ -60,7 +60,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
var ts;
(function (ts) {
ts.versionMajorMinor = "3.1";
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
ts.emptyArray = [];

View File

@ -88,7 +88,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
@ -118952,8 +118952,8 @@ var ts;
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
var _this = this;
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
return;
}
var log = function (message) {

View File

@ -84,7 +84,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
/* @internal */
@ -119126,8 +119126,8 @@ var ts;
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
var _this = this;
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
return;
}
var log = function (message) {

View File

@ -75,7 +75,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
/* @internal */

View File

@ -75,7 +75,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
/* @internal */

View File

@ -88,7 +88,7 @@ var ts;
// If changing the text in this section, be sure to test `configureNightly` too.
ts.versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
ts.version = ts.versionMajorMinor + ".7";
ts.version = ts.versionMajorMinor + ".8";
})(ts || (ts = {}));
(function (ts) {
/* @internal */

View File

@ -2,8 +2,8 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "http://typescriptlang.org/",
"version": "3.1.7",
"license": "Apache-2.0",
"version": "3.1.8",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
"TypeScript",
@ -113,5 +113,8 @@
"os": false,
"path": false
},
"dependencies": {}
"dependencies": {},
"volta": {
"node": "10.23.3"
}
}

View File

@ -3,7 +3,7 @@ namespace ts {
// If changing the text in this section, be sure to test `configureNightly` too.
export const versionMajorMinor = "3.1";
/** The version of the TypeScript compiler release */
export const version = `${versionMajorMinor}.7`;
export const version = `${versionMajorMinor}.8`;
}
namespace ts {