Skip to content

Commit 8275c80

Browse files
committed
Update LKG and package.json version
1 parent aac3e52 commit 8275c80

File tree

9 files changed

+23
-13
lines changed

9 files changed

+23
-13
lines changed

lib/protocol.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,6 +1024,8 @@ declare namespace ts.server.protocol {
10241024
command: CommandTypes.ConfigurePlugin;
10251025
arguments: ConfigurePluginRequestArguments;
10261026
}
1027+
interface ConfigurePluginResponse extends Response {
1028+
}
10271029
/**
10281030
* Information found in an "open" request.
10291031
*/

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.4";
63-
ts.version = ts.versionMajorMinor + ".2";
63+
ts.version = ts.versionMajorMinor + ".3";
6464
})(ts || (ts = {}));
6565
(function (ts) {
6666
ts.emptyArray = [];

lib/tsserver.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ var ts;
8585
// If changing the text in this section, be sure to test `configureNightly` too.
8686
ts.versionMajorMinor = "3.4";
8787
/** The version of the TypeScript compiler release */
88-
ts.version = ts.versionMajorMinor + ".2";
88+
ts.version = ts.versionMajorMinor + ".3";
8989
})(ts || (ts = {}));
9090
(function (ts) {
9191
/* @internal */
@@ -125708,12 +125708,13 @@ var ts;
125708125708
var ExternalProject = /** @class */ (function (_super) {
125709125709
__extends(ExternalProject, _super);
125710125710
/*@internal*/
125711-
function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath) {
125711+
function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath, pluginConfigOverrides) {
125712125712
var _this = _super.call(this, externalProjectName, ProjectKind.External, projectService, documentRegistry,
125713125713
/*hasExplicitListOfFiles*/ true, lastFileExceededProgramSize, compilerOptions, compileOnSaveEnabled, projectService.host, ts.getDirectoryPath(projectFilePath || ts.normalizeSlashes(externalProjectName))) || this;
125714125714
_this.externalProjectName = externalProjectName;
125715125715
_this.compileOnSaveEnabled = compileOnSaveEnabled;
125716125716
_this.excludedFiles = [];
125717+
_this.enableGlobalPlugins(_this.getCompilerOptions(), pluginConfigOverrides);
125717125718
return _this;
125718125719
}
125719125720
ExternalProject.prototype.updateGraph = function () {
@@ -126934,7 +126935,8 @@ var ts;
126934126935
ProjectService.prototype.createExternalProject = function (projectFileName, files, options, typeAcquisition, excludedFiles) {
126935126936
var compilerOptions = convertCompilerOptions(options);
126936126937
var project = new server.ExternalProject(projectFileName, this, this.documentRegistry, compilerOptions,
126937-
/*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave);
126938+
/*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave,
126939+
/*projectFilePath*/ undefined, this.currentPluginConfigOverrides);
126938126940
project.excludedFiles = excludedFiles;
126939126941
this.addFilesToNonInferredProject(project, files, externalFilePropertyReader, typeAcquisition);
126940126942
this.externalProjects.push(project);
@@ -129071,6 +129073,7 @@ var ts;
129071129073
},
129072129074
_a[server.CommandNames.ConfigurePlugin] = function (request) {
129073129075
_this.configurePlugin(request.arguments);
129076+
_this.doOutput(/*info*/ undefined, server.CommandNames.ConfigurePlugin, request.seq, /*success*/ true);
129074129077
return _this.notRequired();
129075129078
},
129076129079
_a));
@@ -131332,15 +131335,15 @@ var ts;
131332131335
process.env.USERPROFILE ||
131333131336
(process.env.HOMEDRIVE && process.env.HOMEPATH && ts.normalizeSlashes(process.env.HOMEDRIVE + process.env.HOMEPATH)) ||
131334131337
os.tmpdir();
131335-
return ts.combinePaths(ts.combinePaths(ts.normalizeSlashes(basePath), "Microsoft/TypeScript"), ts.versionMajorMinor);
131338+
return ts.combinePaths(ts.combinePaths(ts.normalizeSlashes(basePath), "Microsoft/TypeScript"), ts.version);
131336131339
}
131337131340
case "openbsd":
131338131341
case "freebsd":
131339131342
case "darwin":
131340131343
case "linux":
131341131344
case "android": {
131342131345
var cacheLocation = getNonWindowsCacheLocation(process.platform === "darwin");
131343-
return ts.combinePaths(ts.combinePaths(cacheLocation, "typescript"), ts.versionMajorMinor);
131346+
return ts.combinePaths(ts.combinePaths(cacheLocation, "typescript"), ts.version);
131344131347
}
131345131348
default:
131346131349
return ts.Debug.fail("unsupported platform '" + process.platform + "'");

lib/tsserverlibrary.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6748,6 +6748,8 @@ declare namespace ts.server.protocol {
67486748
command: CommandTypes.ConfigurePlugin;
67496749
arguments: ConfigurePluginRequestArguments;
67506750
}
6751+
interface ConfigurePluginResponse extends Response {
6752+
}
67516753
/**
67526754
* Information found in an "open" request.
67536755
*/

lib/tsserverlibrary.js

Lines changed: 6 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.4";
8686
/** The version of the TypeScript compiler release */
87-
ts.version = ts.versionMajorMinor + ".2";
87+
ts.version = ts.versionMajorMinor + ".3";
8888
})(ts || (ts = {}));
8989
(function (ts) {
9090
/* @internal */
@@ -125707,12 +125707,13 @@ var ts;
125707125707
var ExternalProject = /** @class */ (function (_super) {
125708125708
__extends(ExternalProject, _super);
125709125709
/*@internal*/
125710-
function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath) {
125710+
function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath, pluginConfigOverrides) {
125711125711
var _this = _super.call(this, externalProjectName, ProjectKind.External, projectService, documentRegistry,
125712125712
/*hasExplicitListOfFiles*/ true, lastFileExceededProgramSize, compilerOptions, compileOnSaveEnabled, projectService.host, ts.getDirectoryPath(projectFilePath || ts.normalizeSlashes(externalProjectName))) || this;
125713125713
_this.externalProjectName = externalProjectName;
125714125714
_this.compileOnSaveEnabled = compileOnSaveEnabled;
125715125715
_this.excludedFiles = [];
125716+
_this.enableGlobalPlugins(_this.getCompilerOptions(), pluginConfigOverrides);
125716125717
return _this;
125717125718
}
125718125719
ExternalProject.prototype.updateGraph = function () {
@@ -126933,7 +126934,8 @@ var ts;
126933126934
ProjectService.prototype.createExternalProject = function (projectFileName, files, options, typeAcquisition, excludedFiles) {
126934126935
var compilerOptions = convertCompilerOptions(options);
126935126936
var project = new server.ExternalProject(projectFileName, this, this.documentRegistry, compilerOptions,
126936-
/*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave);
126937+
/*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave,
126938+
/*projectFilePath*/ undefined, this.currentPluginConfigOverrides);
126937126939
project.excludedFiles = excludedFiles;
126938126940
this.addFilesToNonInferredProject(project, files, externalFilePropertyReader, typeAcquisition);
126939126941
this.externalProjects.push(project);
@@ -129070,6 +129072,7 @@ var ts;
129070129072
},
129071129073
_a[server.CommandNames.ConfigurePlugin] = function (request) {
129072129074
_this.configurePlugin(request.arguments);
129075+
_this.doOutput(/*info*/ undefined, server.CommandNames.ConfigurePlugin, request.seq, /*success*/ true);
129073129076
return _this.notRequired();
129074129077
},
129075129078
_a));

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.4";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".2";
78+
ts.version = ts.versionMajorMinor + ".3";
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.4";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".2";
78+
ts.version = ts.versionMajorMinor + ".3";
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
@@ -76,7 +76,7 @@ var ts;
7676
// If changing the text in this section, be sure to test `configureNightly` too.
7777
ts.versionMajorMinor = "3.4";
7878
/** The version of the TypeScript compiler release */
79-
ts.version = ts.versionMajorMinor + ".2";
79+
ts.version = ts.versionMajorMinor + ".3";
8080
})(ts || (ts = {}));
8181
(function (ts) {
8282
/* @internal */

package.json

Lines changed: 1 addition & 1 deletion
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.4.2",
5+
"version": "3.4.3",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

0 commit comments

Comments
 (0)