Tagged Questions

110
votes
20answers
21k views

Any recommendations for a CSS minifier?

Any recommendations for a CSS minifier? I’ll be rooting around Google and trying some out, but I suspected that the smart, proficient and curiously handsome StackOverflow community might have already ...
11
votes
1answer
308 views

Why does Google's Closure Compiler leave a few unnecessary spaces or line breaks?

I've noticed that every time I use Google's Closure Compiler Service, it leaves a few unnecessary spaces in the compiled code presented on the right-hand side of the page. These correspond to line ...
8
votes
5answers
95 views

Can a minifier do this? (…and is it a good idea?)

I have a JavaScript application that generates a significant amount of DOM elements. It means that I often use document.createElement("tagname") in my script. I am thinking about using this simple ...
5
votes
3answers
110 views

Are CSS Minifiers that combine elements destructive?

I found this CSS minifier (http://www.lotterypost.com/css-compress.aspx). There is a section at the bottom of that page labelled "What does the CSS Compressor purposely NOT do?" There are four ...
4
votes
2answers
1k views

best javascript compiler/ minifier

I rember having seen a new javascript compiler/ minifier on github which should even be better than google's closure compiler. Unluckily I cant remember its name and find it again. Maybe someone can ...
3
votes
1answer
232 views

C# Code Minification Tools and Techniques

I realize this is a rather odd request, but I was wondering if anyone was aware of some minification/obfuscation tools that work on C# source code (not a compiled assembly). I am trying to reduce the ...
1
vote
0answers
9 views

Using Jsmin build event in Visual Studio to combine files

Im having trouble using JSmin to combine and minify my files on successful build: I think my syntax is correct but the output is empty if $(ConfigurationName) == Debug goto :exit if ...
1
vote
1answer
48 views

HTML minifier puts every tag on a new line

I am using a html minifier, which can be found here: HTML minify The strange thing to me is that every tag is placed on a new line. Is this common behavior or am I doing something wrong. The output ...
1
vote
3answers
148 views

When I minify css or js, why isn't it all on one line?

I understand that minifying tries to reduce file size by removing whitespace characters. Sometimes things end up on one line, but more often than not, there are multiple lines. I noticed that line ...
0
votes
4answers
56 views

Removes spaces between html tags?

To take away some page loading time, where can I find something to remove spaces between html tags? Without me having to go through each one and remove them myself Like so: <body> ...
0
votes
0answers
101 views

Microsoft Ajax Minifier 4, how to change output folder?

I would like to change the output folder of the ajax minifier so that when i build my project, all javascripts end up in the output folder instead of a copy next to the original file. <Import ...