Pick up new TS version for building VS Code

Fixes a few instances of `Promise.all` and also adds an any cast to workaround an issue
This commit is contained in:
Matt Bierner
2021-09-14 14:24:35 -07:00
parent 7a3bcd2d1d
commit 9e5ee5521a
7 changed files with 15 additions and 14 deletions

View File

@@ -103,7 +103,8 @@ async function handlePushError(repository: Repository, remote: Remote, refspec:
title = commit.message.replace(/\n.*$/m, '');
}
const res = await octokit.pulls.create({
// TODO: mjbvz: TS 4.5 workaround
const res = await (octokit as any).pulls.create({
owner,
repo,
title,