minification is the practice of removing unnecessary characters from code to reduce its size, thus improving load times.
0
votes
1answer
10 views
SquishIt : How to minfy CSS files inside asp.net default theme and Javascript files from asp:ScriptManager?
I like this library but could not find any info on how to use SquishIt with asp.net themes and the scriptmanager? The examples below work on the masterpage as long as you have the css links and js ...
1
vote
1answer
27 views
Combining / Merging CSS selectors
A basic CSS example. Every browser I have come across will render the item with the margin & padding and a red border
.test{
margin: 4px;
border: 1px solid black;
padding: 4px;
}
...
1
vote
1answer
19 views
Structure web site for debug & production with minified JS using Google App Engine
I am using Eclipse J2EE with Google plugin for developing Java based web applications.
I am also using GitHub private repository so that multiple developers can contribute to the development of the ...
0
votes
1answer
22 views
How to deal with relative image URL changing when CSS is minified?
The Problem
I have a large website, so my CSS folder structure can be rather deep. Any CSS file can set an element's background image via a relative URL. Before releasing to my production servers, I ...
0
votes
1answer
17 views
Yii Minscript Error with Jquery Mobile
I tried minifying the Jquery Mobile javascript file Using YII minscript extension which wraps Minify. But i keep getting a javascript file that seems to be missing a few codes and throws errors. I did ...
2
votes
1answer
57 views
Play Framework CSS/JS aggregation
Is there a version of a press module (http://www.playframework.com/modules/press) for Play Framework 2 to minifi and aggregate JS and CSS? Are there alternatives? I hate 20 files being included into ...
0
votes
1answer
34 views
uglifyJs Application needed(JavaScript Obfuscator)
I want to know if there is any version of uglifyJS in a windows application mode(not web based app) or maybe another good application that is not web based.
This is the uglifyJS site.
Thank you
1
vote
1answer
22 views
How to use YUI Compressor in Ant build script for javascript and css
After a couple of days searching for how to use the YUI Compressor in an Ant build script I have finally got it working. Many old examples (<2010) exist for creating an Ant task and using that ...
0
votes
2answers
47 views
compress/minify an ajax/json script
Is there any way to minify/ compress an AJAX/Json script which removes the unnecessary whitespaces but leave the rest on is place, like
<?php } else { ?>
ecc. should stay there as it is.
The ...
0
votes
3answers
67 views
Uglifying a RequireJS/Backbone project into one single .js file?
I worked along the following tutorial to try to optimize my project into one single .js file, but unfortunately I can't seem to get the expected results. I get r.js to create an optimized folder for ...
0
votes
2answers
57 views
Javascript error when minified
I'm minifying Javascript in production with jsMin.php https://github.com/rgrove/jsmin-php/
Here is the unminified JS code:
function arc(r, p, a) {
return "A" + r + "," + r + " 0 " + +(a > ...
0
votes
1answer
46 views
Is it possible to enable JavaScript source maps in Safari 6?
I am working with some minified JavaScript code and really benefit from having source maps for debugging. In Chrome, I had no problem enabling source maps and they are currently working for me.
I'm ...
1
vote
2answers
28 views
Slimit python minifier strange behaviour
I am trying to minify some javascript with the Python 'slimit' package.
import slimit
slimit.minify('[1,2,3,4,5,6,7,8]')
runs fine and returns '[1,2,3,4,5,6,7,8]'
import slimit
...
0
votes
1answer
72 views
Why to obfuscate a JavaScript code is a bad style?
I know, that in the society of the web-developers to use a minifying process for their JavaScript code representing as a well stuff. But if you want to obfuscate a JavaScript code, such an action will ...
0
votes
2answers
41 views
Mangle nested classes and variables with uglifyjs
I use uglifyjs to minify a concatenated set of files, which works fine but not good enough. The built lib uses namespaces, so classes, functions and constants are stored in a root namespace variable:
...
1
vote
2answers
42 views
Minifying jQuery plugin scripts?
I am using two or three jQuery plugins on my web page and I have located the source of these plugins but there is no minified version available. Due to licensing and any other rules I have to follow, ...
2
votes
1answer
31 views
whats the difference between the min and the regular file and which one should i use?
whats the difference between the normal and the min qoodoo js file?
Which file should I use to write some js for my web browser?
Thanks
0
votes
1answer
86 views
replacing image paths in minified css with sed
I am concatenating all the css files and minifying them and putting it in a dist directory for distribution. The css files I am concatenating are in various vendor folders and have image paths ...
0
votes
1answer
33 views
website to collate and minify multiple JS files
This might seem a little lazy, but is there any service online that will collect javascript from diverse URLs I could provide and collate them together into one minified file? It would just be easier ...
-1
votes
0answers
11 views
How to exclude lazyload.min.js from minify?
I have some issues with minify and lazyload. So I want to exclude the lazyload.min.js in the minify.php, but I dont know how? Some tips?
0
votes
0answers
20 views
Elfinder minifying issue
A have a little problem with minifying elFinder. I was followed official guide:
https://github.com/Studio-42/elFinder/wiki/Build-and-compress-elfinder-from-source
But I'm stuck here:
...
1
vote
1answer
118 views
Which CSS Minifiers/Compressors don't omit the unit of time values?
The anser to the question "Units on ā0sā Transition in Firefox" points out that it is not valid to omit the unit of time values. My first but not main question would be:
Is this true? Is it for sure ...
0
votes
0answers
72 views
W3 Total Cache “Minify URL not working” error and minify w/ path wrong
Using W3TC Version 0.9.2.9 and WP 3.5.1
Our site has a different site url and wordpress url. For instance, test-cms.infousa.com and test.intra.infousa.com. One is the public domain, the other is the ...
0
votes
2answers
33 views
Compress embedded Javascript in HTML markup
If you have a separate .js file, you may simply compress it with tools such as Yahoo YUI Compressor.
But, how can I compress embedded Javascript in every pages in my project?
(Copying the Javascript ...
2
votes
1answer
101 views
Javascript simplifier?
I would like to eliminate functions that are unused or not related to the given context. Let's say we have:
function a(){ console.log('this is an unrelated function'); }
function b(){ ...
0
votes
1answer
35 views
Concatenating multiple statements using Commas vs Semi colons
While working with minified Jquery I noticed multiple statements concatenated by commas.
For Example
event.preventDefault();
event.stopPropagation();
jQuery.event.trigger( event, data, this[0] );
...
1
vote
1answer
29 views
Referencing Minified Content in Asp.Net / MVC
We have dozens of scripts referenced in our web pages (MVC).
To optimize the site if i minify and merge all scripts into one file , do i need to update those dozen references in each webpage with ...
1
vote
1answer
50 views
Source code lost. Minified file available. How to unminify the file.
I have a javascript file in minified version. I have lost its original source code. How can i recover my source code from my minified version?
The variable names are appearing as _1, _2 etc. Is there ...
0
votes
3answers
49 views
Why would my global variable be undefined in the minified version of my javascript file?
I have a variable
var globalValue = 700;
declared at the top of my aScript.js script file, this variable is being accessed by another function aFunction() in the same file.
While everything ...
0
votes
0answers
61 views
how to minify javascript generated by ASP.NET
I knew few javascript file compressors/minifiers. Lately I am using pagesped and Yslow which sugegsted that all java script should be minified. Hence we minified all the inline script too. Still we ...
0
votes
0answers
35 views
Google minify Script & minify Stylesheet is not working in Zend Framework,
I had integrated google minify Script & minify stylesheet using following library,
http://code.google.com/p/minify
its working fine in my localhost project and project is in Zend Framework ...
0
votes
1answer
73 views
Minify 2.1.5 works on localhost but not on live server due to document root issue
The problem:
My /min/ files are in different places for my local and live server:
localhost/min/
/mnt/foo/bar/hello/example.com/web/content/min/ (from $_SERVER['DOCUMENT_ROOT'])
Min works fine on ...
0
votes
2answers
46 views
More Granular Closure Compiler Flags?
I am using closure compiler to minfiy and concatenate my scripts and I would like to use the ADVANCED_OPTIMIZATIONS flag to get even more minifying magic out of it. However some of the scripts I have ...
0
votes
1answer
53 views
Yui_compressor not working in symfony 2
I used this guide to adding the yui_compressor to my symfony project. But its not creating the minified files. Below are the settings I applied, please take a look and tell me what might be going ...
1
vote
2answers
111 views
Angular: Do the parameters of a directive's link function rely on DI?
In:
module.directive 'name', ->
(scope, element, attr) ->
# Whatever implemenation
Do the scope, element and attrs parameters of the link function rely on name-inferred ...
1
vote
1answer
33 views
Merge Common Selectors (using Codekit)?
If I have a file called 'structure.scss' and inside this file I have the code
body { margin: 20px; }
and I have another file called 'fonts.scss' with the following code inside
body { color: red; ...
0
votes
0answers
84 views
Combine and minify js file using nodejs dynamically
I am new to nodejs and grunt.
I was going through the less-middleware and was very impressed with the way it automatically creates the css files. I now want the same for js files also. Let me ...
1
vote
2answers
71 views
Variables in Google Closure
http://closure-compiler.appspot.com/home
(function(){
var somevar = 'somevar';
this.each(function(){
var minify_var = {
method1: somevar + '1',
method2: somevar + '2',
method3: somevar + ...
2
votes
2answers
53 views
how to delete python code that's not covered
Is there a tool that removes python code that isn't covered at run time, or a tool that removes code that isn't depended on by a particular function? If not, what would be a good approach?
Here is my ...
0
votes
1answer
94 views
AngularJS: Correct minify-able syntax when using resolve with controllers
Im using the resolve functionality with a couple of controllers to fetch some data before the rendering of a new view kicks in like this:
HomeCtrl.resolve = {
pictures: function(Picture) {
...
0
votes
0answers
64 views
CSS compilation/compression and Source Maps v3
Does anyone know of a tool that will compress/minify/combine my CSS files and produce valid v3 SourceMap that can be used with Chrome? Preferably a NodeJS tool.
The compressors I know of for Node are ...
1
vote
1answer
196 views
requirejs - combine several files to single js file that not dependent on requirejs
I am writing jQuery plugin that contains a lot of code. Therefore I decided to separate the code and make it more modular for me (the developer). For this I use require.js.
Now I have 6 js files:
...
2
votes
1answer
60 views
ScriptBundle+Optimization return unwanted number
I'm using ScriptBundle and set EnableOptimizations to true.
My original script is
$('.carousel').carousel({ interval: 5000, pause: "hover" })
And the result from minification is
...
1
vote
1answer
75 views
Can .$inject be used on Services in AngularJS, or is it needed only for Controllers?
I'm aware that for the purposes of minification and obfuscation we should always use the $injector (by way of controllerName.$inject = ['$service', '$service2']) to specify the actual service names ...
0
votes
0answers
108 views
minifying angular
I have this interest in automate/simplify angular project with a compiler tool, which might work on everything else, but angular inject and namespacing is awkward enough to escape compiler knowledge. ...
0
votes
1answer
304 views
automate process to minify angular.js project
I have this interest in automate/simplify angular project with a compiler tool, which might work on everything else, but angular inject and namespacing is awkward enough to escape compiler knowledge. ...
0
votes
3answers
80 views
Are there any tools that will remove duplicate styles from a stylesheet? (CSS or SCSS)
I'm trying to refactor a 7000 line CSS file that is full of duplicate styles into a cleaner SCSS file that I will probably be pulling apart into smaller files later.
Are there any good tools that ...
1
vote
2answers
141 views
Minify Javascript using JSMin.php
I have a website with JSMin minification on server side. The problem is that my server became slow after implementing the JSMin
This happens because there are urls that import some other specific ...
1
vote
1answer
41 views
Jammit is poorly compressing jQuery 1.9.1 compared to jQuery grunt scripts (145k vs 93k)
I've been trying out Jammit to compress jQuery 1.9.1, and although it minifies and compresses successfully, it appears to be generating an output file that's 50k larger than using jQuery's grunt ...
0
votes
0answers
93 views
CSS bundle minification replacing Unicode characters
I'm seeing an issue in VS2012 that replaces the Unicode characters in my minified CSS code.
font-family: "FontAwesome";
content: "\f002";
This is fine in the un-minified bundle css file that is ...


