NUglify
NUglify copied to clipboard
NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)
I'm using version 1.21.9. **Describe the bug** NUglify is giving a function inside a block the same name as a variable in a closure. **To Reproduce** How I'm running it:...
Hi, Problem occurs during minification of js file from external library. We are aware the import and export words are reserved keyword but we aren't able to change it in...
Are you using the latest verion of NUglify, especially if used through BunderMinifier? Update before raising a bug as your issue is probably already fixed _Yes - V1.21.9_ **Describe the...
Tested using latest master **Describe the bug** Trying to minify CSS that includes `@supports selector` produces wrong output **To Reproduce** ``` var result = Uglify.Css(@"@supports selector(:has(*)) { .VentaRapida { position:...
PR #397 introduces support for minifying custom identifiers, but if those custom identifiers contain spaces in their names, the spaces are removed, breaking the interpretation of those identifiers. This behavior...
c# code is: ``` var jscode = @" function fun(item){ if (createmode == true) { let a = 'a'; var b = 'b'; if(a && b != null ) {...
Not a bug, just a question. Would this repo accept a PR that removes deprecated frameworks i.e. Keeping support for NET 4.7+ and NetStandard and NetCore >6 but dropping earlier...
This may be a fix for the issue raised in #407 Sorry I am unable to run the tests due to missing dependencies, so there may be errors. 🐉
Are you using the latest verion of NUglify, especially if used through BunderMinifier? **Yes** **Describe the bug** Tailwind can have the following CSS: ```css *, ::before, ::after { --tw-contain-paint: ;...
**Describe the bug** Consider JavaScript like this: ``` class MyClass { constructor(field) { this.field = field; } method() { field++; } get property() { return field; } } var myVar...