mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-07 14:34:35 -06:00
Merge pull request #20174 from RyanCavanaugh/fixTypingsInstallerAgain_2.6
Always send a response to installTypings even if all types are cached
This commit is contained in:
commit
c9803f2871
@ -1018,7 +1018,7 @@ namespace ts.projectSystem {
|
||||
}
|
||||
};
|
||||
session.executeCommand(changeRequest);
|
||||
host.checkTimeoutQueueLengthAndRun(0); // This enqueues the updategraph and refresh inferred projects
|
||||
host.checkTimeoutQueueLengthAndRun(2); // This enqueues the updategraph and refresh inferred projects
|
||||
const version2 = proj.getCachedUnresolvedImportsPerFile_TestOnly().getVersion();
|
||||
assert.equal(version1, version2, "set of unresolved imports should not change");
|
||||
});
|
||||
|
||||
@ -257,8 +257,9 @@ namespace ts.server.typingsInstaller {
|
||||
const filteredTypings = this.filterTypings(typingsToInstall);
|
||||
if (filteredTypings.length === 0) {
|
||||
if (this.log.isEnabled()) {
|
||||
this.log.writeLine(`All typings are known to be missing or invalid - no need to go any further`);
|
||||
this.log.writeLine(`All typings are known to be missing or invalid - no need to install more typings`);
|
||||
}
|
||||
this.sendResponse(this.createSetTypings(req, currentlyCachedTypings));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user