Perf/tree shaking audit bundle size budgets#42
Open
israelolrunfemi wants to merge 2 commits into
Open
Conversation
|
@israelolrunfemi Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
Same rebase blocker. PR is also carrying the leak-detection harness files ( Rebase, scope this PR down to just the tree-shaking and bundle-size budget changes: git fetch origin
git rebase origin/develop
# during the rebase, drop changes to src/chains/stellar/* and test/leak/* (those belong elsewhere)
# keep only your size-limit config, dependency-graph audit notes, and per-entry budget enforcement
git push --force-with-leaseThanks @israelolrunfemi. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes: #17
The SDK's subpath exports had never been verified for tree-shaking
correctness. Any consumer importing a single chain entry could have
been paying the bundle cost of all chains due to accidental
cross-imports, import * patterns, or noble-curves namespace imports.
Changes:
Measurement harness
(minified, browser, ESM) and writes BUNDLE_SIZE.md with a
per-entry gzip table
Visualizer
rollup with rollup-plugin-visualizer and commits four HTML flamegraph
files under dist/stats/ for reviewer inspection
Size budgets
index 10 KB
chains/stellar 40 KB
chains/evm 35 KB
chains/solana 45 KB (includes intentional stellar scalar re-use)
chains/ckb 40 KB (includes intentional evm key re-use)
CI gate
entry exceeds budget; uploads dist/stats/ as a downloadable artifact;
posts the size table as a PR comment
Cross-import audit
named imports (eliminates the most common tree-shaking bypass)
BUNDLE_SIZE.md; document any unexpected ones found and fixed
Committed artifacts
New devDependencies: size-limit, @size-limit/preset-small-lib,
rollup-plugin-visualizer, rollup, tsx