Skip to content

Commit f7a3c71

Browse files
Daniel Sogldanielsogl
andcommitted
fix(build): add correct build script typings
Co-Authored-By: Daniel Sogl <[email protected]>
1 parent 80a537c commit f7a3c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tasks/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async function publish(ignoreErrors = false) {
7878
// upload 1 package per CPU thread at a time
7979
const worker = Queue.async.asyncify(
8080
(pkg: any) =>
81-
new Promise<any>((resolve, reject) => {
81+
new Promise<string | void>((resolve, reject) => {
8282
exec(`npm publish ${pkg} ${FLAGS}`, (err, stdout) => {
8383
if (stdout) {
8484
Logger.verbose(stdout.trim());

0 commit comments

Comments
 (0)