Skip to content

Commit 13651e8

Browse files
Bump version to 4.0.7 and LKG
1 parent 052aff3 commit 13651e8

8 files changed

+12
-12
lines changed

lib/tsc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "4.0";
70-
ts.version = "4.0.6";
70+
ts.version = "4.0.7";
7171
var NativeCollections;
7272
(function (NativeCollections) {
7373
function tryGetNativeMap() {

lib/tsserver.js

+3-3
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 `configurePrerelease` too.
9595
ts.versionMajorMinor = "4.0";
9696
/** The version of the TypeScript compiler release */
97-
ts.version = "4.0.6";
97+
ts.version = "4.0.7";
9898
/* @internal */
9999
var Comparison;
100100
(function (Comparison) {
@@ -148754,8 +148754,8 @@ var ts;
148754148754
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
148755148755
var _this = this;
148756148756
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
148757-
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
148758-
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
148757+
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
148758+
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
148759148759
return;
148760148760
}
148761148761
var log = function (message) { return _this.projectService.logger.info(message); };

lib/tsserverlibrary.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ var ts;
288288
// If changing the text in this section, be sure to test `configurePrerelease` too.
289289
ts.versionMajorMinor = "4.0";
290290
/** The version of the TypeScript compiler release */
291-
ts.version = "4.0.6";
291+
ts.version = "4.0.7";
292292
/* @internal */
293293
var Comparison;
294294
(function (Comparison) {
@@ -148948,8 +148948,8 @@ var ts;
148948148948
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
148949148949
var _this = this;
148950148950
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
148951-
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
148952-
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
148951+
if (!pluginConfigEntry.name || ts.parsePackageName(pluginConfigEntry.name).rest) {
148952+
this.projectService.logger.info("Skipped loading plugin " + (pluginConfigEntry.name || JSON.stringify(pluginConfigEntry)) + " because only package name is allowed plugin name");
148953148953
return;
148954148954
}
148955148955
var log = function (message) { return _this.projectService.logger.info(message); };

lib/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ var ts;
288288
// If changing the text in this section, be sure to test `configurePrerelease` too.
289289
ts.versionMajorMinor = "4.0";
290290
/** The version of the TypeScript compiler release */
291-
ts.version = "4.0.6";
291+
ts.version = "4.0.7";
292292
/* @internal */
293293
var Comparison;
294294
(function (Comparison) {

lib/typescriptServices.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ var ts;
288288
// If changing the text in this section, be sure to test `configurePrerelease` too.
289289
ts.versionMajorMinor = "4.0";
290290
/** The version of the TypeScript compiler release */
291-
ts.version = "4.0.6";
291+
ts.version = "4.0.7";
292292
/* @internal */
293293
var Comparison;
294294
(function (Comparison) {

lib/typingsInstaller.js

+1-1
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 `configurePrerelease` too.
8484
ts.versionMajorMinor = "4.0";
8585
/** The version of the TypeScript compiler release */
86-
ts.version = "4.0.6";
86+
ts.version = "4.0.7";
8787
/* @internal */
8888
var Comparison;
8989
(function (Comparison) {

package.json

+1-1
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": "4.0.6",
5+
"version": "4.0.7",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/corePublic.ts

+1-1
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 `configurePrerelease` too.
44
export const versionMajorMinor = "4.0";
55
/** The version of the TypeScript compiler release */
6-
export const version = "4.0.6" as string;
6+
export const version = "4.0.7" as string;
77

88
/**
99
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)