From 18f2baa88bdb1728cc5428285ec56d8eada4186e Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Tue, 22 May 2018 10:16:24 -0700 Subject: [PATCH] Fix errors --- src/compiler/tsbuild.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/tsbuild.ts b/src/compiler/tsbuild.ts index ac2462b2c07..b157a1a4fe4 100644 --- a/src/compiler/tsbuild.ts +++ b/src/compiler/tsbuild.ts @@ -502,7 +502,7 @@ namespace ts { if (project.projectReferences) { for (const ref of project.projectReferences) { const resolvedRef = resolveProjectReferencePath(host, ref); - const refStatus = getUpToDateStatus(configFileCache.parseConfigFile(resolvedRef), context); + const refStatus = getUpToDateStatus(configFileCache.parseConfigFile(resolvedRef)); // If the upstream project is out of date, then so are we (someone shouldn't have asked, though?) if (refStatus.type !== UpToDateStatusType.UpToDate) { @@ -767,7 +767,7 @@ namespace ts { let next: string; while (next = getNext()) { const proj = configFileCache.parseConfigFile(next); - const status = getUpToDateStatus(proj, context); + const status = getUpToDateStatus(proj); reportProjectStatus(next, status); if (status.type === UpToDateStatusType.UpToDate && !context.options.force) {