Closed jafin closed 9 months ago
Describe the bug
Uglify.Css is escaping already escaped characters in class identifiers The example below is output from tailwind build.
Uglify.Css
To Reproduce
var result = Uglify.Css(@" .\!inline-flex { display: inline-flex!important } "); Console.WriteLine(result.Code);
.\\21inline-flex { display: inline-flex!important }
.\!inline-flex { display: inline-flex!important }
I've done up a PR but I have been unable to run the tests locally (Am not setup for net4.6) ,
Fixed in v1.21.3
Thank you!
Describe the bug
Uglify.Css
is escaping already escaped characters in class identifiers The example below is output from tailwind build.To Reproduce
Actual
Expected
I've done up a PR but I have been unable to run the tests locally (Am not setup for net4.6) ,