Skip to content

Commit

Permalink
fix: provide mergeSet for toSourceFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Aug 9, 2024
1 parent 378c61f commit 49ee212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/convert/streams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class ComponentConverter extends Transform {
}
}
if (converts.length === 0) {
converts.push(transformer.toSourceFormat({ component: chunk }));
converts.push(transformer.toSourceFormat({ component: chunk, mergeSet: this.mergeSet }));
}
break;
case 'metadata':
Expand Down

2 comments on commit 49ee212

@svc-cli-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 49ee212 Previous: 378c61f Ratio
eda-componentSetCreate-linux 232 ms 222 ms 1.05
eda-sourceToMdapi-linux 2216 ms 1985 ms 1.12
eda-sourceToZip-linux 1900 ms 2000 ms 0.95
eda-mdapiToSource-linux 2837 ms 2909 ms 0.98
lotsOfClasses-componentSetCreate-linux 433 ms 420 ms 1.03
lotsOfClasses-sourceToMdapi-linux 3677 ms 3654 ms 1.01
lotsOfClasses-sourceToZip-linux 3038 ms 3033 ms 1.00
lotsOfClasses-mdapiToSource-linux 3518 ms 3483 ms 1.01
lotsOfClassesOneDir-componentSetCreate-linux 741 ms 746 ms 0.99
lotsOfClassesOneDir-sourceToMdapi-linux 6382 ms 6343 ms 1.01
lotsOfClassesOneDir-sourceToZip-linux 5628 ms 5470 ms 1.03
lotsOfClassesOneDir-mdapiToSource-linux 6404 ms 6330 ms 1.01

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 49ee212 Previous: 378c61f Ratio
eda-componentSetCreate-win32 723 ms 707 ms 1.02
eda-sourceToMdapi-win32 4400 ms 4841 ms 0.91
eda-sourceToZip-win32 3451 ms 3289 ms 1.05
eda-mdapiToSource-win32 6537 ms 6290 ms 1.04
lotsOfClasses-componentSetCreate-win32 1368 ms 1170 ms 1.17
lotsOfClasses-sourceToMdapi-win32 8637 ms 7768 ms 1.11
lotsOfClasses-sourceToZip-win32 5721 ms 5194 ms 1.10
lotsOfClasses-mdapiToSource-win32 8712 ms 7870 ms 1.11
lotsOfClassesOneDir-componentSetCreate-win32 2368 ms 2108 ms 1.12
lotsOfClassesOneDir-sourceToMdapi-win32 15471 ms 13963 ms 1.11
lotsOfClassesOneDir-sourceToZip-win32 10593 ms 9332 ms 1.14
lotsOfClassesOneDir-mdapiToSource-win32 16127 ms 14258 ms 1.13

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.