Upgrade TypeScript to 9.2.0

This commit is contained in:
Henry Mercer 2023-01-18 20:00:33 +00:00
parent 40a75182e7
commit 5f644f971e
2873 changed files with 320828 additions and 210965 deletions

View file

@ -1931,7 +1931,9 @@ export async function downloadPacks(
}
if (numPacksDownloaded > 0) {
logger.info(
`Downloaded ${numPacksDownloaded} ${packs === 1 ? "pack" : "packs"}`
`Downloaded ${numPacksDownloaded} ${
numPacksDownloaded === 1 ? "pack" : "packs"
}`
);
} else {
logger.info("No packs to download");

View file

@ -1,3 +1,5 @@
import { TextDecoder } from "node:util";
import * as github from "@actions/github";
import { TestFn } from "ava";
import * as nock from "nock";