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.
Webpack v5's CSS loader fails when seeing this double semicolon. The error looks something like:
As @jlukic says in this comment, this should be the place to fix this.
The contribution guide says to merge against next, but that branch is 32 commits behind so I'm not too sure. Please feel free to adapt.
If this ends up not being merged, or if it does not trigger the automated commits and release, I suppose the other way to fix this would be in the css parser used by webpack?
Otherwise, workarounds can be found on the issues linked in the commit, namely:
<style>
tag instead of via webpack, since browsers seem to ignore the double semicolon: CSS import breaks webpack 5 compilation Semantic-UI-CSS#75 (comment)This would close #7073 once the updated css is published.