Benjamin Horsleben
Benjamin Horsleben
Interesting. You can work around the problem by replacing the space with `%20`, making your code `@font-face{font-family:'Nexa Light';src:url(font/Nexa%20Light.otf)`
@mik3009 That is not at all the same problem. Your problem is that you manually copy the image, but use the tool to copy the CSS. The tool keeps the...
See https://github.com/fizker/minifier#css-url-rewrites, which is slightly wrong because quotations are removed to save 2 bytes per URL (which breaks urls containing spaces) I am pretty sure that strings in JS are...
This is a duplicate of #19, in that the version of uglifyjs used only supports ES5 syntax
The [sqwish](https://github.com/ded/sqwish) module is used for CSS minification. It is simply a set of regex rules for what to delete, so I don't think that would ever give better feedback....
This is an issue in [https://github.com/mishoo/UglifyJS2](uglify), as I get the same result with `npm i uglifyjs; echo 'alert("\u00A9")' | node_modules/.bin/uglifyjs`. Can you create a similar issue over there?
No. What would be the point? All files going over the wire should be minified.
How about filtering the list before passing it in? Then we would have one less filter-implementation to struggle with
Sure. I don't know how you use it now, but [xargs](http://linuxcommand.org/man_pages/xargs1.html) can probably help you pass in a list as individually files. Or you could enumerate the list in bash...
Pull request #14 does actually **not** fix this, it only applies to gradient-hexes with 8 digits (including alpha channel). It is perfectly valid to only use 6 digits as well....