123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- const Entrypoint = require("../Entrypoint");
- const getAllChunks = (entrypoint, excludedChunk1, excludedChunk2) => {
- const queue = new Set([entrypoint]);
- const chunks = new Set();
- for (const entrypoint of queue) {
- for (const chunk of entrypoint.chunks) {
- if (chunk === excludedChunk1) continue;
- if (chunk === excludedChunk2) continue;
- chunks.add(chunk);
- }
- for (const parent of entrypoint.parentsIterable) {
- if (parent instanceof Entrypoint) queue.add(parent);
- }
- }
- return chunks;
- };
- exports.getAllChunks = getAllChunks;
|