NUglify icon indicating copy to clipboard operation
NUglify copied to clipboard

NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)

Results 84 NUglify issues
Sort by recently updated
recently updated
newest added

**Describe the bug** The minified code have a bug and breaks when executed; because the variable t not exists. Currenlty I have fixed the code by removing the unused variable....

bug
PR Welcome!

**Describe the bug** When including the property import.meta in a javascript file to be compressed it creates an error. However import.meta is a valid property supported within es2020 **To Reproduce**...

bug
PR Welcome!

added Test Case for [Bug](https://github.com/trullock/NUglify/issues/409) This patch corrects both the support for import.meta as well as inline async import and a couple of other import module issues for compression. I...

added Test Case for Bug https://github.com/trullock/NUglify/issues/403 added import, export and with to CanBeIdentifier (https://github.com/trullock/NUglify/issues/403)

#### Description: When using NUglify to minify JavaScript code that contains a destructuring assignment with a spread operator, the resulting minified code is incorrect. Specifically, the variable names in the...

bug
PR Welcome!

**Describe the bug** Here is the sample code: ```js class Test { 'allow-cache'() { } } ``` The minifiedJs.Errors will produce `Expected identifier: 'allow-cache'` error. This should be a valid...

bug
PR Welcome!

``` var txt = @" Document font color "; var hs = HtmlSettings.Pretty(); hs.Indent = "\t"; var res = Uglify.Html(txt, hs); ``` ![Image](https://github.com/user-attachments/assets/022f61c8-371e-4057-be38-fd922215a7d5) The name changes from **--9c00fd5c** to **-\39...

bug
PR Welcome!

**Describe the bug** When using the dvh property in LESS, after compiling to CSS it inserts a space between the number and the unit causing invalid CSS. **To Reproduce** With...

bug
PR Welcome!

I am using the latest version of Nuglify. The code ```javascript function Test(iterable) { for (let value of Object.values(iterable)) { console.log(value); } } Test({ foo: 10, bar: 12 }); ```...

bug
PR Welcome!

When parsing the following code, "options" is incorrectly identified as a duplicate property name: `const { options, labels, options: { labels: labelOptions } } = this;` ``` [Test] public void...