build: 修复构建问题

This commit is contained in:
wanchun 2022-05-17 19:19:43 +08:00
parent e2c6cd085f
commit c003aed099

View File

@ -94,10 +94,14 @@ const isChangeInCurrentTag = async (pkg, newestTag) => {
const filterChangedPackages = async () => { const filterChangedPackages = async () => {
const { stdout: newestTag } = await run('git', ['describe', '--abbrev=0', '--tags'], { stdio: 'pipe' }); const { stdout: newestTag } = await run('git', ['describe', '--abbrev=0', '--tags'], { stdio: 'pipe' });
return packages.filter(async (pkg) => { const results = await Promise.all(
const result = await isChangeInCurrentTag(pkg, newestTag); packages.map(async (pkg) => {
return result; const result = await isChangeInCurrentTag(pkg, newestTag);
}); return result;
}),
);
return packages.filter((_v, index) => results[index]);
}; };
async function createPackageNewVersion(pkg) { async function createPackageNewVersion(pkg) {