diff --git a/.github/workflows/package-size-check.js b/.github/workflows/package-size-check.js index ea58509b211..8f30f2e8099 100644 --- a/.github/workflows/package-size-check.js +++ b/.github/workflows/package-size-check.js @@ -11,7 +11,9 @@ const features = []; files.forEach(file => { const filePath = ps.join(exportsDir, file); const feature = ps.parse(ps.basename(filePath)).name; - features.push(feature); + if (feature !== 'vendor') { + features.push(feature); + } }); console.log(`features: [ ${features.join(', ')} ]`);