minification is the practice of removing unnecessary characters from code to reduce its size, thus improving load times.

learn more… | top users | synonyms (1)

0
votes
3answers
44 views

XML/HTML Deminify Program

I am writing a Java program which will deminify any HTML/XML file from a single line to multiple lines (structured way). The method is simple. I am using a regex to split the single string into ...
0
votes
0answers
70 views

YUI Compressor 2.4.7 - No class def error ErrorReporter

I have a problem with the YUI Compressor for js: I've added version 2.4.7 to my build path in Eclipse ( tried with rhino jar and also without) - no effect whatsoever. I dont get compile errors, I can ...
0
votes
2answers
248 views

AngularJS Service Config value get destroyed on minification

Having some trouble with minification and AngularJS ;-( I found this jsfiddle "loading" extender for HTTP request, through the AngularJS Wiki page. It worked great until i published it, and the ...
0
votes
1answer
66 views

Ember JS minified with Ember-Skel

I tried minifying an Ember JS application. I am using the Ember-Skel Tools to compile the JS app and to minify them. When I set the RAKEP_MODE to production, it usually minifies the JS and CSS. When I ...
4
votes
3answers
260 views

WP HTML minification class not working

I found this script on http://www.intert3chmedia.net/2011/12/minify-html-javascript-css-without.html. It's supposed to minify (not compress as the class name suggests) HTML: <?php class ...
1
vote
2answers
96 views

Creating a script to use Google Closure for multiple javascript files

I need to use the Google Closure compiler.jar to minify a huge project I am working on. I have multiple js files that I want to compile into a single game.min.js file. I know I can use the ...
9
votes
1answer
187 views

Minify/compress CSS with regex?

In PHP can you compress/minify CSS with regex (PCRE)? (As a theoretical in regex. I'm sure there are libraries out there that do this well.) Background note: After spending hours writing an answer ...
1
vote
0answers
113 views

r.js optimizer just copies javascript files to build directory

I am trying to use r.js to minify and uglify the entire project. But when i run the command r.js -o app.build.js It just optimizes the CSS file and copies all javascript files to build directory. ...
2
votes
0answers
62 views

why does minified jQuery have line breaks? [duplicate]

I was including the minified version of jQuery 1.9.1 on my site and noticed that the javascript code has 2 line breaks. Is there a reason for the line breaks? I thought minifiers are supposed to ...
2
votes
1answer
226 views

Minifying an ExtJS application using UglifyJS?

Is it possible to minify an ExtJS 4 MVC style application using a third party tool like UglifyJS? I've tried compressing each file in the app into a single file, but the ExtJS loader then reports ...
8
votes
1answer
169 views

Why is Minified Code not Equivalent to Original?

When I ran my MVC 4 project in Release mode, one page that uses SlickGrid did not display correctly (the grid is very, very tall and the grid cells are missing). However, I do not think this is an ...
0
votes
1answer
123 views

Using non-minified CSS during development vs production Maven build

I have no problem implementing a solution in my pom.xml using the samaxes plugin to minify and generate my required example.min.css file, is there script, how can I keep the development environment ...
1
vote
1answer
247 views

Grails resource plugin and using different resources per environment

In my current grails project we're minifying our JavaScript files with UglifyJS and are also using these minified resources in the development environment. As you can image this is a little pain in ...
1
vote
2answers
63 views

What is the proper way to minify many jquery plugins into one file?

I have several plugins I am using for my site, like 8 of them and instead of loading 8 separate minified plugins. I would like to load only one big minified file. So I downloaded all plugins in an ...
0
votes
0answers
96 views

Is there a way to include multiple CDN?

I have the following bundle: bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( "~/Scripts/jquery-1.*", "~/Scripts/jquery.unobtrusive*", "~/Scripts/jquery.validate*")); How ...
1
vote
1answer
68 views

Is there a benefit to pack third-party JS & CSS libraries along with my project assets?

I want to start using minifying tools such as Minify, Uglify or Closure to speed up the loading of my pages. My project relies on several bulky libraries (jQuery, Bootstrap, ...). I'm considering ...
3
votes
1answer
37 views

I'm trying to understand an optimization for improving minification in JavaScript

While digging into the uniform.js source code I found this (on line #333): /** * Meaningless utility function. Used mostly for improving minification. * * @return false */ function returnFalse() { ...
1
vote
1answer
29 views

Chirpy console throws exception

I want to run the Chirpy console minifyer, but it throws exception. The path given exists and earlier it ran impeccably. I'm not sure what might cause the problem. Can someone explain it to me? ...
0
votes
2answers
367 views

Minify Scripts/CSS in production mode with node.js

I have a web app that runs in node. All the (client) Javascript/CSS files are not minified at the moment to make it easier to debug. When I am going into production, I would like to minify these ...
0
votes
1answer
233 views

VS2010 Automatically rebuild minified .js/.css files

Problem: I have been trying to integrate minification of javascript and css files in our VS2010 (.net 4.) projects. From what I hear, .net 4.5 and VS2012 will have minification build into the editor, ...
0
votes
1answer
95 views

Minified Javascript doesn't work when combined in one file

I have 3 JS libraries that I use that are in their own separate files. They are commented with the code minified in each individual file file 1: http://jsfiddle.net/NGMVa/ file 2: ...
0
votes
1answer
84 views

css image links after minify with google tool

i have problem with image links in css file, btw i use google minify tool if that can cause the problem ? I use image in css like this: background: url('../images/image.png'); and image doesn't ...
3
votes
1answer
128 views

Why does Google Closure Compiler NOT rename these external variables?

According to documentation (https://developers.google.com/closure/compiler/docs/api-tutorial3#externs), it seems the closure compiler should rename variables when no external declaration exists, ...
0
votes
1answer
151 views

How to turn TypeScript .min.js file generation on and off?

With the TypeScript Visual Studio plugin, usually saving a .ts file causes 2 new files to be generated underneath of it: file.js and file.min.js. Is there a way to configure this, so that you can ...
2
votes
3answers
70 views

html page optimization - spaces within html source page

My question is not exactly about css, but about spaces within the html page between tags etc. Is there any reasons the page http://m.aol.com/portal/ contains so many spaces in the html code (please ...
3
votes
3answers
104 views

Should minification of css and js files be in a build step or done by hand?

There is really two questions here. 1) should minification be done by hand or done as part of a build? 2) should the minified files be version controlled? I"m trying to define a go forward path ...
0
votes
1answer
238 views

Closure Compiler options

I want to use Closure Compiler to minify/compress JS code. the problem is that it doesn't minify as well as I expect it to. consider the code below. when I pass the string var func = function ( ...
1
vote
2answers
151 views

How to setup Grunt.js with different inputs?

Im using Grunt.js to concat/minify files - but would like to use 1 common grunt.js file to concat/compress files in multiple directories for different websites. What would be the best way to do this? ...
2
votes
1answer
86 views

Is there a way to minify Rails UJS responses?

sprockets does all the minification for js assets, but a lot of javascript is written in a respond_to :js UJS responses. Making the javascript readable while programming also makes it bloated with ...
0
votes
1answer
86 views

Node.js: Is there a deploy module could merge javascript file and minify them?

Is there a deploy module in node.js could merge my javascript and css file or compress javascript and css file and so on. cuz I deploy my application at Platform-as-a-Service like appfog so I ...
1
vote
2answers
541 views

Using grunt js to both minify and concatenate without a *.con.js file

I've been using grunt.js to concatenate and then minify javascript files. The way I've been accomplishing this task leaves me with an extra script.con.js file (the concatenated file). I don't find it ...
2
votes
1answer
54 views

Why this minified code run slowly in Opera Browser?

I am testing JavaScript minifiers: Yahoo! YUI Compressor and Google Closure Compiler, comparing the visual result in http://text-compare.com and comparing the performance results in http://jsperf.com. ...
0
votes
2answers
42 views

Condensing re-used HTML (with variations based on variables) via Javascript [closed]

I've got a page that is made up of a container that has several component divs in it. There are dozens of these containers in the markup (a suite type and version) and I show/hide the appropriate ones ...
2
votes
2answers
56 views

Is there a Ruby Gem that Decompresses CSS?

Found myself in situation, where I need to decompress CSS through Middleware..(IE *cough *cough) I've Googled, RubyGem'd, Github'd and haven't found anything It seems solutions are a one way ticket. ...
1
vote
1answer
100 views

What is the Google Closure Compiler REST API request limit?

Performing too many requests from the Closure Compiler API you get this error: Error(22): Too many compiles performed recently. Try again later. What is the actual/current limit? Is it an hourly ...
0
votes
2answers
145 views

Condense jQuery hide/show scripts for page with multiple select boxes

I'm building a page that's going to have several select boxes that will reveal specific links based on the value selected. I can show/hide everything just fine, but I know I'm doing things the hard ...
5
votes
4answers
205 views

How can I Minify a Perl Script?

I want to minify a perl script so that I can detect practically identical perl scripts that have only differences in line comments, blank lines, etc. I there a pre-built script to do this ...
0
votes
1answer
200 views

Including non-minified Backbone and Underscore in Wordpress

I have been trying to debug an intermittent problem in the Wordpress-3.5 uploader, where it seemed a Backbone.js model was getting messed up somewhere. I downloaded the non-minified Backbone.js and ...
0
votes
1answer
466 views

Use RequireJS config file as the build file?

I've got some paths configured in require-config.js as follows: var require = { baseUrl: '/javascript', paths: { 'jquery': 'jquery/jquery-1.8.1.min' // etc. -- several paths ...
-1
votes
1answer
125 views

CSS Minify and Background-image syntax [closed]

I have been looking for a reliable css minifier that doesn't require command line to run. Something similar to Google closure compiler where you can input multiple JavaScript files and minify them ...
0
votes
0answers
90 views

Compass SASS full compression if .min.scss

I'm trying to setup my config file that if it is compiling a file like filename.scss it will compile as :expanded. However, if the file name contains *.min.scss then I want to compress as :compressed. ...
0
votes
0answers
199 views

Minify and obfuscate JavaScript code in Java

Possible Duplicate: What is the best free JavaScript obfuscator that is available as a Java library? I use YUI Compressor for years to minify and obfuscate JS files. But now I need to ...
0
votes
0answers
86 views

Less @import render one file for javascript

Ok, bare with me. I have several less stylesheets for my site. My style.css file looks like this: @import "../components/bootstrap/less/bootstrap.less"; @import "./gist.less"; @import ...
1
vote
1answer
82 views

run uncompressed and minified jQuery files at the same time

Is it possible to run both the uncompressed and minified versions of jQuery on the same website? I have two web scripts that I am attempting to merge together, one that utilizes uncompressed jQuery ...
0
votes
1answer
85 views

Javascript minify on save

I want to add functionality to javascript-mode so that, whenever I save a Javascript file on the current buffer, it creates a minified file of it in a directory defined with relative path such as ...
1
vote
0answers
135 views

Obfuscate single non-modular javascript file with require.js

I have a project for which I'm using require.js to minify/obfuscate/combine some modules. I also have a single javascript file(7 lines of code) which I want to obfuscate in the same way but it's not ...
1
vote
0answers
49 views

Weird %MINIFYHTML code showing just before </body> tag

The following code is showing on certain pages of my wordpress site. ...
3
votes
0answers
144 views

PHP Minifier for JS and CSS [closed]

I want to have both a minified and an expanded version on this site (it's for delivering to another developer, not production). I want to be able to have a JS file running PHP that has a list of ...
0
votes
1answer
50 views

Google Minify + Pass Variable

I'm using Google Minify to compress js files successfully. I need to be able to pass a variable (like a $_GET variable) with this. <script type="text/javascript" ...
-1
votes
1answer
87 views

Combining multiple licenses on minified JS files [closed]

I'm working on a web poject, and using a free library and some own code. The library has a GNU-like licence, so every modification has to be free again, but I'm not allowed to free my code (it's not ...

1 2 3 4 5 13