Tagged Questions
YUI Compressor is a utility that can minify/compress JavaScript and/or Cascading Style Sheets to reduce the file payload size for web pages. Available in Java and .NET.
25
votes
5answers
5k views
Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript?
YUI Compressor was the consensus best tool for minimizing, but Closure seems like it could be better.
8
votes
6answers
2k views
How to execute “eval” without writing “eval” in JavaScript
Here's the deal,
we have a big JS library that we want to compress, but YUI compressor doesn't fully compress the code if it finds an "eval" statement, out of fear that it will break something else.
...
7
votes
5answers
827 views
Assetic + YUI Compressor in symfony 2: is this a bug?
I have tested the YUI compressor in the command line (on windows) and it seems to work just fine.
But the .css created by assetic is not compressed, and comes with this message on the top (inside the ...
7
votes
2answers
667 views
Is there a version of YUI Compressor that deals correctly with media queries?
YUI Compressor has a known bug where some media queries, including those used to serve styles to iOS and Android devices (e.g. @media screen and (max-device-width: 480px) {...}), are broken when ...
6
votes
1answer
1k views
Does YUI compressor support bundling of multiple files?
I created a moduling system using jQuery. Is there any build system something similar to Dojo's Shrinksafe, that could combine all my module files into one single file for production?
Does YUI ...
6
votes
5answers
2k views
Errors using yuicompressor
I am getting some errors when trying to run yuicompressor.
it says:
[error] 1:2:illegal character
[error] 1:2:syntax error
[error] 1:3 illegal character
Could this be because I am saving it as the ...
5
votes
2answers
163 views
how to load minify css in production envirn
I have been loading so many JS and CSS in my project.
To improve my site performance, I started with YUICompression integrated with Ant build.
So each time when I build the project it creates minified ...
5
votes
4answers
174 views
Testing out the performance gain of compressing JavaScript code
I have used 5 JavaScript compressors to compress a JavaScript library (JSMin, YUI compressor, Packer, closure compiler and UglifyJS)
Now I know that closure compiler is the winner in reducing the ...
5
votes
2answers
2k views
maven yui compression on war:war
I'm trying to automatically compress both CSS and JS using maven and this plugin. I want to compress when the goal war is executed but I'm not figuring how:
<build>
...
4
votes
1answer
432 views
YUI Compressor on entire directory - os x
I am trying to figure out how to run yui compressor on an entire directory. I want to compress the directory to another directory named compressed.
Any advice?
4
votes
6answers
1k views
HTML + JavaScript + CSS compact tool
I need a tool which can minify, optimize and munge many files of those possible types
HTML (minify only)
JavaScript (minify, optimize and munge)
CSS (minify)
The final result should be one HTML ...
4
votes
2answers
332 views
How to Minify .net AXD Resources
Hey
I am working on a big .NET project. I am currently creating an automated minifier for JS and CSS files using YUI compressor. After doing some research, I found that the heaviest files in the ...
4
votes
3answers
2k views
Can YUI compressor minify ASP.NET inline script?
How can you compress inline script and style tags?
YSlow says In addition to minifying external scripts and styles, inlined script and style blocks can and should also be minified.
3
votes
2answers
34 views
Recursively compress directory of javascript files into a single file
I would like be able to run a single command in my project folder to concatenate and compress all of my javascript files (perhaps with YUI Compressor) into a single output file.
If possible I would ...
3
votes
1answer
264 views
How to build Sencha Touch with sencha-touch.jsb3?
I'm trying to edit the bundled sencha-touch.jsb3 file in attempt to reduce the size of the framework code.
Here's where I am so far:
Download the Sencha SDK Tools from ...
3
votes
2answers
2k views
yuicompressor plugin execution not covered in m2e
After a long search for a JavaScript compressor I could use in Maven, I finally found one:
<plugin>
<groupId>net.alchim31.maven</groupId>
...
3
votes
2answers
256 views
Reliable and convenient JavaScript minifier
I occasionally write JavaScript code. I am interested in minifying it for better performance, but I don't plan to spend to much time on that, especially in testing the minified result.
I found this ...
3
votes
7answers
344 views
Does JavaScript obfuscation provide much intellectual property protection for your code?
I have some code that I'd like to "hide" from potential plagiarism.
I'm thinking of running it through the YUI compressor.
Would this provide much defense against would-be code thieves?
3
votes
1answer
469 views
YUI remove javascript comments
I need to remove comments (the "// This is a comment" like comments) from some Javascript code, I'm using YUI compressor, there is an option to do that?
Thanks
Thanks for the response, I'm trying ...
3
votes
2answers
242 views
YUI compressor: Found an undeclared symbol
I have a collection of Javascript files that together constitute a system. Different parts of the system are in different (global) namespaces (e.g., NSA, NSB, etc.) and those namespaces may be ...
3
votes
1answer
405 views
Telling YUI compressor to remove specific non-commented code
In my javascript I have some bits of code specifically used for debugging which I don't want to include in the live site. Is there a way I can semi-comment these bits of code so that they run as ...
3
votes
1answer
661 views
Get ant concat to ignore BOM's'?
I have an ant build that concatenates my javascript into one file and then compresses it. The problem is that Visual Studio's default encoding attaches a BOM to every file. How do I configure ant to ...
3
votes
1answer
2k views
individually minify JS and CSS in Visual Studio 2010
I'm currently migrating a project to Visual Studio 2010 and am trying to figure out how to minify JS and CSS files individually on build.
In Visual Studio 2008 I used a Web Deployment Projects with a ...
3
votes
2answers
1k views
Minify inline javascript during build for ASP.net?
We have a handful of ASP.net pages that include more than 50+ lines of javascript specific to that page. We'd like to minify that javascript during our CruiseControl build process.
We already use ...
3
votes
5answers
346 views
Concantenating CSS and JS prior to compressing? Tools? Best Practices?
I'm working on a one-page site that is incorporating about a dozen .js files and and maybe a half dozen .css files.
Most of the .js files are jQuery plugins.
Aside from a base css file, the CSS files ...
3
votes
1answer
1k views
yuicompressor error, not sure what is wrong?
Very confused here, trying out the yuicompressor on a simple javascript file.
My js file looks like:
function splitText(text)
{
return text.split('-')[1];
}
The error is:
[INFO] Using charset ...
3
votes
5answers
3k views
YUICompressor or similar in PHP?
I've been using yuicompressor.jar on my test server for on-the-fly minimisation of changed JavaScript files. Now that I have deployed the website to the public server, I noticed that the server's ...
3
votes
3answers
2k views
How can I combine and compress multiple script and css files for production use?
I want to use YUI Compressor to combine and compress my css and js file sets when I compile my project. YUI Compressor only takes as input single files. I've tried using the following (Windows) ...
2
votes
1answer
58 views
time yahoo yui takes to compress css
I am using the Yahoo Yui Compressor to compress my css styles. I reference the dll in my c# application and make the call to the compressor as follows:
CssCompressor.Compress(fileContent, 0, ...
2
votes
1answer
118 views
When in the release process should I minify my css and js files?
Currently we have a very simple (but effective) release process. We tag a new version in SVN. This version will is exported to a test environment. From there we rsync to the Acceptance environment and ...
2
votes
1answer
140 views
.NET YUI Compressor: How to include all but one css/js files from the same directory?
I hooked up YUI Compressor to my MVC 3 project. I got one folder with css files and another one with js files. When building, I want to include all of the files from css directory, except for one. ...
2
votes
3answers
2k views
Online CSS Minifier that uses the YUI Compressor
I was wondering is there any online css minifiers that use the YUI Compressor.
2
votes
1answer
338 views
php exec memory usage with phing
I'm automating some tasks using phing and yui compressor and I'm running into a memory problem. I'm curious if there is a better way to handle this.
Part of phing build script
<target ...
2
votes
1answer
123 views
Redirecting the YUI Compressor's verbose output to a file
I am calling the YUI compressor in as follows:
C:\Program Files (x86)\Java\jre6\bin>java -jar c:\min\yuicompressor-2.4.2.jar -v c:\min\file1.js -o c:\min\file1-min.js > c:\min\output.txt
Is ...
2
votes
3answers
396 views
Visual Studio: Check out file when building project
I have a post build event that combines my JavaScript files and outputs to Production.js, however if Production.js is not checked out, the build fails.
Is it possible to automatically check ...
2
votes
1answer
603 views
Java YUI Javascript-Compressor Error
I am building a build script for our web development team. We will be using this script to prepare all our front-end code for production. I am using the YUI Compressor to compress our CSS and ...
2
votes
4answers
1k views
Javascript YUICompressor error
Using YUICompressor I get the following error from my javascript code:
[ERROR] 270:201:missing name after . operator
[ERROR] 292:6:missing ; before statement
Here's the javascript code at ...
1
vote
1answer
91 views
Maven yui compressor plugin cannot create aggregation given a longer path?
I'm trying to create two css aggregations - one for the public site and one for the application part of the site.
If I make the output file ...
1
vote
2answers
286 views
symfony2 assetics yui compressor on windows (path syntax)
I'm trying to get assetics running with the yui compressor and, if this is running, sass. Right now, both don't work. When removing all filters from config.yml and the twig template, it works and php ...
1
vote
2answers
67 views
BUG YUICompressor with special chars
I am using the newer version of YUICompressor (2.4.7) to compress my Javascript and CSS files, for a long time, everything was apparently fine...when I realized that the special characters "í" and "Í" ...
1
vote
2answers
58 views
Embedded web pages: best compression tool for css, javascript and html
I'm searching for the best tool in order to compact css, javascript and html.
Background:
I'm developing an administration UI in html5 on an embedded web server for a device with 8 MegaBytes of flash ...
1
vote
2answers
61 views
YUI Compressor - Automate Javascript Compression but skip some files
I am following the suggested answer on this SO post:
How to automate JavaScript files compression with YUI Compressor?
However, in my ~/Scripts folder, I have several jQuery files that are already ...
1
vote
1answer
106 views
Skip License/Credit Comments when minifying JavaScript using YUIcompressor
Is there a way to keep license/credit comments when the JavaScript is being minified by YUICompressor? Is there any special commenting characters? Or any flag for that in YUICompressor?
Thanks,
Grace
...
1
vote
1answer
188 views
Can you combine Javascript into single file without minifying it with yui-compressor?
Is there a way to compress input javascript in a sinlge file but not minify it using Yui-Compressor?
string compressedJavascript = JavaScriptCompressor.Compress(uncompressedJavascript)
This what ...
1
vote
2answers
107 views
Calling a JS & CSS mimifier when creating WAR archive with Grails
When using Grails, when creating the WAR archive, I would like to apply a filter to all Javascript & CSS files : the yui-compressor mimifier. Is there a nice ways to achieve that with Grails ?
1
vote
2answers
608 views
Maven YUI Compressor Plugin Causing process-resources phase to not run?
I have a maven project that builds a war file.
Including the yui compressor in my maven build file is causing files, found in src/main/resources/ unrelated to any js files, processed during the ...
1
vote
2answers
144 views
Having trouble passing parameters to a program within powershell
I'm using yuicompressor to minify and obfuscate some javscript files. I'm trying to dynamically build the file path and pass it to the minifier from powershell.
Here's what works:
$results = java ...
1
vote
3answers
2k views
yui compressor maven plugin doesnt compress the js files
I am using yui compressor to compress the js files in my web app.
I have configured the plugin as indicated on yui maven plugin site yui compressor maven plugin.
This is the pom plugin conf
...
1
vote
1answer
255 views
Web deployment with compressed files
Short Version
When using file compressors like YUI compressor, what is the proper procedure for deploying your website, so that you don't have to mess with compressed files during development time? ...
1
vote
2answers
269 views
minify and combine files - what is your development and release setup?
I am currently using PHP minify to combine and compress the static files (CSS and JS). With PHP minify it is very easy to develop and deploy. Because:
Say there are two files: a.js and b.js and we ...