es6-css-minify icon indicating copy to clipboard operation
es6-css-minify copied to clipboard

Easily minify CSS and JavaScript in VS Code

Results 31 es6-css-minify issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Variables starting with `$` are removed. **To Reproduce** 1. Open a new file 2. Paste the following code ```js const $foo = 42 ``` 3. Select the...

When using Visual Studio code, how do I "execute" the minifier from a task within "tasks.json"? Is it even possible? I haven't been able to find any documentation on executing...

**Describe the bug** When you minify a .js file which is for example in the windows-1252 format, le .min.js file has a utf-8 format **To Reproduce** Steps to reproduce the...

Because why not? A lot of people use JSON, so this would be a useful feature.

**Is your feature request related to a problem? Please describe.** When using @import "base.css", allow me to keep the @import statement instead of replacing it with the file's content **Describe...

**Describe the bug** Assume I have 2 css files: base.css app.css in app.css I import base.css "@import "base.css" in app.min.css - a copy of the base.css is added instead of...

In a JSON file, if I run the command `Minify: Selection`: * before minified: ```json { "autoload": { "psr-4": { "App\\something": "app\\something" } } } ``` * after minified: ```json...

**Issue** Some newer JS language features cause minification errors. In particular "Optional chaining" and "Nullish Coalescing". **Example 1** On minification of a file that uses Optional Chaining `[myFile.js]: [Errors]: 1...

I installed the extension JS & CSS Minifier in Visual Studio Code. I am trying to minify and compress my js, so that all variable names get shortened/uglified in the...

It gives an error if there is nullish operator in my script. It throws an error like this ``` cmd [index.js]: [Errors]: 1 - Unexpected token: operator (?) ``` please...