From c003aed09973aa89252a10bd2a06fbb0e13af545 Mon Sep 17 00:00:00 2001 From: wanchun <445436867@qq.com> Date: Tue, 17 May 2022 19:19:43 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E4=BF=AE=E5=A4=8D=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/release.mjs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/release.mjs b/scripts/release.mjs index e5b8a201..1bbef913 100644 --- a/scripts/release.mjs +++ b/scripts/release.mjs @@ -94,10 +94,14 @@ const isChangeInCurrentTag = async (pkg, newestTag) => { const filterChangedPackages = async () => { const { stdout: newestTag } = await run('git', ['describe', '--abbrev=0', '--tags'], { stdio: 'pipe' }); - return packages.filter(async (pkg) => { - const result = await isChangeInCurrentTag(pkg, newestTag); - return result; - }); + const results = await Promise.all( + packages.map(async (pkg) => { + const result = await isChangeInCurrentTag(pkg, newestTag); + return result; + }), + ); + + return packages.filter((_v, index) => results[index]); }; async function createPackageNewVersion(pkg) {