From 0115ff815766167773d833c497a1dcd7ff18fdb2 Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Sat, 9 Dec 2023 06:25:14 -0800 Subject: [PATCH] chore: remove redundant await --- scripts/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.ts b/scripts/build.ts index a64476a..f358e27 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -131,7 +131,7 @@ async function main() { } }); - await await Promise.all([ + await Promise.all([ writeTypesFile('standard', standard), writeTypesFile('other', other), ]);