chore: use Rolldown bundle analyzer instead of rollup-plugin-visualizer - #343
Open
stipsan wants to merge 1 commit into
Open
chore: use Rolldown bundle analyzer instead of rollup-plugin-visualizer#343stipsan wants to merge 1 commit into
stipsan wants to merge 1 commit into
Conversation
Swap the demo Vite build to rolldown/experimental bundleAnalyzerPlugin so analysis is produced by the bundler itself. Co-authored-by: Cody Olsen <stipsan@users.noreply.github.com>
|
stipsan
marked this pull request as ready for review
August 18, 2026 10:12
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.
Replace
rollup-plugin-visualizerin the demo Vite config with Rolldown’s built-inbundleAnalyzerPlugin.Vite 8 already bundles with Rolldown, so analysis now comes from
rolldown/experimentalinstead of a Rollup visualizer plugin. Afterpnpm build:demo, the report is emitted asdemo/dist/analyze-data.json(JSON by default) instead ofstats.html.rolldownis added as a direct devDependency at~1.1.5so it matches the version Vite 8.1.5 uses. That keepsinstanceof BuiltinPluginworking under pnpm’s strict resolution.Verified locally:
pnpm build:demoemitsdemo/dist/analyze-data.jsonpnpm lint,pnpm type-check, andpnpm testpass