fix(dev-infra): update generated ng-dev compiled output (#39474)

Update to the new ng-dev generated script.

PR Close #39474
This commit is contained in:
Joey Perrott 2020-10-28 10:47:22 -07:00
parent 8106a7a11b
commit d6a765909b
1 changed files with 9 additions and 5 deletions

View File

@ -760,6 +760,8 @@ var GitClient = /** @class */ (function () {
return scopes.split(',').map(function (scope) { return scope.trim(); });
});
};
/** Whether verbose logging of Git actions should be used. */
GitClient.LOG_COMMANDS = true;
return GitClient;
}());
@ -1408,6 +1410,8 @@ function checkServiceStatuses(githubToken) {
const config = getCaretakerConfig();
/** The GitClient for interacting with git and Github. */
const git = new GitClient(githubToken, config);
// Prevent logging of the git commands being executed during the check.
GitClient.LOG_COMMANDS = false;
// TODO(josephperrott): Allow these checks to be loaded in parallel.
yield printServiceStatuses();
yield printGithubTasks(git, config.caretaker);