The Wayback Machine - https://web.archive.org/web/20200712202631/https://github.com/topics/minification
Skip to content
#

minification

Here are 163 public repositories matching this topic...

BigFax
BigFax commented Mar 18, 2020

Would be great to have a better documentation for the minify method.

Usually, we can find the method signature with parameters and return details.
Here, I don't find any API description of this method in the README.

I had an error when doing minify(path.resolve(__dirname, 'assets/css/blabla.css')); because until now i was using an array of paths. Looks like it is not working with a sing

brookjordan
brookjordan commented Mar 17, 2020

The following:

.box {
  border-top-left-radius: 10px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 40px;
}

is currently minified to:

.box{border-top-left-radius:10px;border-top-right-radius:20px;border-bottom-left-radius:20px;border-bottom-right-radius:40px}

but could be “short-hand”ed:

.box {borde
static-site-boilerplate
Andrew1431
Andrew1431 commented Apr 9, 2020

Describe the bug
In your documentation, it clearly states:

You may add as many html pages as you’d like to the root level directory, they will automatically be copied and minified into the dist/ folder upon building your site.

So I don't know if this a bug report or a feature request:

I want users to be able to visit website.com/survey instead of survey.html so I've put a

XenTerSeO
XenTerSeO commented Dec 24, 2017
const HeaderUser = styled.a`
  font-size: 0;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  &:hover {
    border: 0;
    margin-top: -10px;
    padding-top: 7px;
    border-top: 3px solid rgb(255, 255, 255);

    /* ${HeaderAvatar} {
      border: 2px solid rgb(255, 255, 255);
    } */
  }
`

=>

ERROR in ./clie
wp-rocket
gevcen
gevcen commented Jan 26, 2020

Before submitting an issue please check that you’ve completed the following steps:
Everything up to date

Describe the bug
In WordPress, we have Pages and we have Articles. When you clear the cache for one particular page, the success message being displayed indicates that the "ARTICLE" was cleared with success.

To Reproduce
Create any page and clear its cache.

**Expected be

joeyhoer
joeyhoer commented Sep 21, 2017

The version of posterizer provided in ImageAlpha is different from posterize as it exists in this repo. This becomes evident when running the following:

$ posterize -v 64 test.png test.png
MSE=20.288 (Q=43, 64 levels)
$ wc -c test.png
210715 test.png
$ /Applications/ImageAlpha.app/Contents/MacOS/posterizer -v 64 test.png test.png 
MSE=17.192 (Q=50, 64 levels)
$ wc -c 

Improve this page

Add a description, image, and links to the minification topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the minification topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.