Emit separate editor and content stylesheets from the build tools#1438
Merged
Conversation
przemyslaw-zan
requested changes
Jul 21, 2026
…ns and cover missing branches.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 3399eeb. Configure here.
… of the chunk module order.
…itor-and-content-styles
przemyslaw-zan
approved these changes
Jul 22, 2026
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.

🚀 Summary
Replaces the
splitCssplugin with a reworkedbundleCssplugin inckeditor5-dev-build-tools. CSS must now be imported through explicitindex-editor.cssandindex-content.cssentry points, and the build emits three stylesheets: the combined bundle (preserving the JavaScript import order, where the editor and content styles of each feature sit next to each other), plus separate-editorand-contentbundles.The CSS ordering traversal now starts from the chunk facade module instead of every chunk module, which reduces the plugin's
generateBundle()time on the fullckeditor5bundle from ~1.2 s to ~30 ms with byte-identical output.📌 Related issues
💡 Additional information
The three stylesheets are bundled by Lightning CSS from virtual entry points, so
@imports are flattened and warnings are forwarded to Rolldown with correct source locations.