Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use traverseAssets in packager #8592

Merged
merged 1 commit into from Oct 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 8 additions & 10 deletions packages/packagers/js/src/DevPackager.js
Expand Up @@ -39,16 +39,14 @@ export class DevPackager {
async package(): Promise<{|contents: string, map: ?SourceMap|}> {
// Load assets
let queue = new PromiseQueue({maxConcurrent: 32});
this.bundle.traverse(node => {
if (node.type === 'asset') {
queue.add(async () => {
let [code, mapBuffer] = await Promise.all([
node.value.getCode(),
this.bundle.env.sourceMap && node.value.getMapBuffer(),
]);
return {code, mapBuffer};
});
}
this.bundle.traverseAssets(asset => {
queue.add(async () => {
let [code, mapBuffer] = await Promise.all([
asset.getCode(),
this.bundle.env.sourceMap && asset.getMapBuffer(),
]);
return {code, mapBuffer};
});
});

let results = await queue.run();
Expand Down