Default to lean case aliases and repair Blazor CSS artifacts - #7
Merged
Conversation
magiccodingman
marked this pull request as ready for review
July 27, 2026 04:44
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.
What changed
SnapshotCaseAliasStrategy.Exhaustiveand--case-alias-strategy exhaustive<!--!-->) from inline style content before CSS parsingh 1throughh 6, accept the repair only when the resulting CSS parses and minifies successfully, and run the existing verification passWhy
The prior alias implementation generated every combination of independently cased path segments. A route such as
/docs/setup/path1produced variants such as/DOCS/SETUP/PATH1, creating exponential output growth without materially improving the default fallback behavior. The new default covers one incorrectly cased segment at a time, while exhaustive behavior remains available for callers that truly need every combination.Blazor can emit empty render markers inside serialized
<style>content and can split generated heading selectors such ash1intoh 1around Razor-rendered markup. These are renderer artifacts rather than intentional application CSS. Snapshot now handles only those known forms, validates the repaired stylesheet, and otherwise falls back safely.User impact
Normal CLI builds now create substantially fewer case-alias redirect files for nested routes. Existing users who require the old behavior can run:
Inline CSS generated by the observed Blazor
MarkupStringpattern should minify without producing the previous fallback diagnostic.Validation
Added protocol tests for lean versus exhaustive alias generation and processing tests for:
h 1toh1repair after parse failure