Skip to content

Commit c0d1c31

Browse files
committed
addressed PR feedback
1 parent a1b9416 commit c0d1c31

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ task("generate-spec", [specMd]);
735735
// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
736736
desc("Makes a new LKG out of the built js files");
737737
task("LKG", ["clean", "release", "local"].concat(libraryTargets), function () {
738-
var expectedFiles = [tscFile, servicesFile, serverFile, nodePackageFile, nodeDefinitionsFile, standaloneDefinitionsFile, tsserverLibraryFile, tsserverLibraryDefinitionFile, cancellationTokenFile, typingsInstallerFile].concat(libraryTargets);
738+
var expectedFiles = [tscFile, servicesFile, serverFile, nodePackageFile, nodeDefinitionsFile, standaloneDefinitionsFile, tsserverLibraryFile, tsserverLibraryDefinitionFile, cancellationTokenFile, typingsInstallerFile, buildProtocolDts].concat(libraryTargets);
739739
var missingFiles = expectedFiles.filter(function (f) {
740740
return !fs.existsSync(f);
741741
});

src/server/protocol.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,6 +1219,7 @@ namespace ts.server.protocol {
12191219
/**
12201220
* End position of the range for which to format text in file.
12211221
*/
1222+
/* @internal */
12221223
endPosition?: number;
12231224
/**
12241225
* Format options to be used.

0 commit comments

Comments
 (0)