Fix findUpDir.ts and uses

Missed a bunch of stuff in #46414 (556098e).
This commit is contained in:
Eli Barzilay
2021-10-22 03:07:51 -04:00
parent d89076381e
commit fa2ad1a35a
5 changed files with 9 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ const execTsc = (lkg, ...args) =>
exec(process.execPath,
[resolve(findUpRoot(), lkg ? "./lib/tsc" : "./built/local/tsc"),
"-b", ...args],
{ hidePrompt: true })
{ hidePrompt: true });
const projectBuilder = new ProjectQueue((projects, lkg, force) => execTsc(lkg, ...(force ? ["--force"] : []), ...projects));