From f7a3c7127a17a53e911119fc87c7149d356315bb Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Sat, 23 Jan 2021 18:53:12 +0100 Subject: [PATCH] fix(build): add correct build script typings Co-Authored-By: Daniel Sogl --- scripts/tasks/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tasks/publish.ts b/scripts/tasks/publish.ts index 3606eea1b..2fee939f5 100644 --- a/scripts/tasks/publish.ts +++ b/scripts/tasks/publish.ts @@ -78,7 +78,7 @@ async function publish(ignoreErrors = false) { // upload 1 package per CPU thread at a time const worker = Queue.async.asyncify( (pkg: any) => - new Promise((resolve, reject) => { + new Promise((resolve, reject) => { exec(`npm publish ${pkg} ${FLAGS}`, (err, stdout) => { if (stdout) { Logger.verbose(stdout.trim());