Bump version to 4.1.5 and LKG

This commit is contained in:
TypeScript Bot
2021-02-10 00:22:08 +00:00
parent af0ad80897
commit aace53f7d7
8 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
var ts;
(function (ts) {
ts.versionMajorMinor = "4.1";
ts.version = "4.1.4";
ts.version = "4.1.5";
var NativeCollections;
(function (NativeCollections) {
function tryGetNativeMap() {
+3 -3
View File
@@ -94,7 +94,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
ts.version = "4.1.4";
ts.version = "4.1.5";
/* @internal */
var Comparison;
(function (Comparison) {
@@ -151959,8 +151959,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) { return _this.projectService.logger.info(message); };
+3 -3
View File
@@ -288,7 +288,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
ts.version = "4.1.4";
ts.version = "4.1.5";
/* @internal */
var Comparison;
(function (Comparison) {
@@ -152153,8 +152153,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) { return _this.projectService.logger.info(message); };
+1 -1
View File
@@ -288,7 +288,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
ts.version = "4.1.4";
ts.version = "4.1.5";
/* @internal */
var Comparison;
(function (Comparison) {
+1 -1
View File
@@ -288,7 +288,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
ts.version = "4.1.4";
ts.version = "4.1.5";
/* @internal */
var Comparison;
(function (Comparison) {
+1 -1
View File
@@ -83,7 +83,7 @@ var ts;
// If changing the text in this section, be sure to test `configurePrerelease` too.
ts.versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
ts.version = "4.1.4";
ts.version = "4.1.5";
/* @internal */
var Comparison;
(function (Comparison) {
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.1.4",
"version": "4.1.5",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
+1 -1
View File
@@ -3,7 +3,7 @@ namespace ts {
// If changing the text in this section, be sure to test `configurePrerelease` too.
export const versionMajorMinor = "4.1";
/** The version of the TypeScript compiler release */
export const version = "4.1.4" as string;
export const version = "4.1.5" as string;
/**
* Type of objects whose values are all of the same type.