css-purge icon indicating copy to clipboard operation
css-purge copied to clipboard

A CSS tool written in Node JS as a command line app or library for the purging, burning, reducing, shortening, compressing, cleaning, trimming and formatting of duplicate, extra, excess or bloated CSS...

Results 25 css-purge issues
Sort by recently updated
recently updated
newest added

If the input file has successive/multiple blank lines, output the same number of .blank lines. To make file comparison easier!

```css .toppest-right .iconfont { font-size: 1.4rem; } .toppest-right a:hover { text-decoration: none; color: #23a4db; } #topHeader { background: #08a1e5 url("../img/top-header.jpg") top no-repeat; } ``` After css-purge ```css .toppest-right .iconfont {...

I'm attempting to use GraalVM Polyglot JavaScript to execute a CSS Purge. GraalVM doesn't support node 'require' (out the box - seems there may be some magic config that I...

I'm using gulp-css-purge v3.0.9. In package-lock.json css-purge installed is v3.1.8. When I use the verbose options, it gives me: ``` Before: 382.765KB After: 0.33931KB Saved: 382.4257KB (99.91%) ``` But the...

It appears that changing the `reduce_declarations_file_location` option inside a custom config file has no effect, because the CLI still tries to use the default `config_reduce_declarations.json`

This tool is great! I am using it with Gulp. I have a very small HTML file that I am running the purge against. There is no `` element in...

For script integration and general utility, it would be nice to have the ability to 1) cosume stdin as css input 2) emit processed result on stdout Current workflow for...

Hello. I want to remove duplicate declarations in my css. Some of them contain rules with and without "important". I've tried simple example but found the following behaviour (everything is...

Hi, I have 2 files with the same styles //1.css and 2.css same content ``` #breadcrumb ul { list-style: none; margin: 8px 0 0 0 !important; padding: 0 !important; }...

I used "npm install css-purge -g" from the main docs to install and when I run the following command "css-purge -i localcss.txt -o localcssnew.css" ``` internal/modules/cjs/loader.js:905 throw err; ^ Error:...