Skip to content

Commit

Permalink
fix(build): add correct build script typings
Browse files Browse the repository at this point in the history
Co-Authored-By: Daniel Sogl <mytechde@outlook.com>
  • Loading branch information
Daniel Sogl and danielsogl committed Jan 23, 2021
1 parent 80a537c commit f7a3c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tasks/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<any>((resolve, reject) => {
new Promise<string | void>((resolve, reject) => {
exec(`npm publish ${pkg} ${FLAGS}`, (err, stdout) => {
if (stdout) {
Logger.verbose(stdout.trim());
Expand Down

0 comments on commit f7a3c71

Please sign in to comment.