We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.1.45+196621f25
Linux 6.12.9_1 x86_64 unknown
/* repro.css */ .foo { content: "\2b"; }
Run bun build --experimental-css repro.css.
bun build --experimental-css repro.css
Output should be
/* repro.css */ .foo { content: "+"; }
Output is
/* repro.css */ .foo { content: "+\\"; }
No response
The text was updated successfully, but these errors were encountered:
I'm quite sure this commented-out continue is the issue:
continue
bun/src/css/css_parser.zig
Line 4904 in 5819fe4
Sorry, something went wrong.
No branches or pull requests
What version of Bun is running?
1.1.45+196621f25
What platform is your computer?
Linux 6.12.9_1 x86_64 unknown
What steps can reproduce the bug?
Run
bun build --experimental-css repro.css
.What is the expected behavior?
Output should be
What do you see instead?
Output is
Additional information
No response
The text was updated successfully, but these errors were encountered: