fix(build): add correct build script typings
Co-Authored-By: Daniel Sogl <mytechde@outlook.com>
This commit is contained in:
parent
80a537c0db
commit
f7a3c7127a
@ -78,7 +78,7 @@ async function publish(ignoreErrors = false) {
|
|||||||
// upload 1 package per CPU thread at a time
|
// upload 1 package per CPU thread at a time
|
||||||
const worker = Queue.async.asyncify(
|
const worker = Queue.async.asyncify(
|
||||||
(pkg: any) =>
|
(pkg: any) =>
|
||||||
new Promise<any>((resolve, reject) => {
|
new Promise<string | void>((resolve, reject) => {
|
||||||
exec(`npm publish ${pkg} ${FLAGS}`, (err, stdout) => {
|
exec(`npm publish ${pkg} ${FLAGS}`, (err, stdout) => {
|
||||||
if (stdout) {
|
if (stdout) {
|
||||||
Logger.verbose(stdout.trim());
|
Logger.verbose(stdout.trim());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user