We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1e3d0 commit c7967b1Copy full SHA for c7967b1
scripts/rollup/build.js
@@ -527,10 +527,6 @@ function resolveEntryFork(resolvedEntry, isFBBundle) {
527
}
528
529
async function createBundle(bundle, bundleType) {
530
- if (shouldSkipBundle(bundle, bundleType)) {
531
- return;
532
- }
533
-
534
const filename = getFilename(bundle, bundleType);
535
const logKey =
536
chalk.white.bold(filename) + chalk.dim(` (${bundleType.toLowerCase()})`);
@@ -766,6 +762,10 @@ async function buildEverything() {
766
762
);
767
763
768
764
765
+ bundles = bundles.filter(([bundle, bundleType]) => {
+ return !shouldSkipBundle(bundle, bundleType);
+ });
+
769
if (process.env.CIRCLE_NODE_TOTAL) {
770
// In CI, parallelize bundles across multiple tasks.
771
const nodeTotal = parseInt(process.env.CIRCLE_NODE_TOTAL, 10);
0 commit comments