Tagged Questions
0
votes
1answer
99 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: ...
3
votes
1answer
731 views
Combining and minifying JS and CSS in ASP.NET MVC
I created default ASP.NET MVC 3 web application. Then I added three css and three js files to \Views\Shared_Layout.cshtml view:
<!DOCTYPE html>
<html>
<head>
...
1
vote
1answer
482 views
CakePHP: Best way to handle asset minification / combining?
I know that it's good to minify assets because doing so reduces their file size, which reduces the amount of time it takes for the page to load. I also know that it's good to combine assets because ...
0
votes
2answers
411 views
Javascript one request for multiple JS files
I was thinking about creating script that would do the following:
Get all javascripts from JS directory used on server
Combine all scripts to one - that would make only one request instead of ...
1
vote
1answer
813 views
@{#if DEBUG} not working
My web.config file contains this
<compilation debug="false" targetFramework="4.0">
<assemblies>
// some assemblies
</assemblies>
</compilation>
And in my ...
1
vote
2answers
198 views
How to minify and combine commented out css files
I have these conditional css files
<!--[if IE 7]><link rel="stylesheet" type="text/css" media="all" href="/Content/css/ie7.css" /><![endif]-->
<!--[if IE 6]><link ...
1
vote
3answers
279 views
JS & CSS minify & combine using Xpedite
I found a library called Xpedite. the URL of the project is http://xpedite.codeplex.com. From here anyone can download the project with a sample. I checked this library and it is good.
The user only ...
6
votes
1answer
702 views
Complete solution to Combine, Minify and GZIP your Styles AND Scripts on Asp.Net MVC3 using Razor
Sorry for my bad English, but i guess it won't be a problem. I just wan't to share a nice Helper Class that i made to combine, minify and gzip our scripts and styles using the Microsoft Ajax Minifier. ...
11
votes
2answers
2k views
JSF2 Static Resource Management — Combined, Compressed
Is anyone aware of a method to dynamically combine/minify all the h:outputStylesheet resources and then combine/minify all h:outputScript resources in the render phase? The comined/minified resource ...
1
vote
2answers
2k views
Compress CSS/JavaScript before publish/package
I've been reading this post about minifying and compressing static files like CSS/JS within the publish/package event in VS2010.
I wonder if it also is possible to combine the files to one CSS file ...
15
votes
6answers
4k views
Minifying and combining files in .net
I am looking at implementing some performance optimization around my javascript/css. In particular looking to achieve the minification and combining of such. I am developing in .net/c# web ...
4
votes
2answers
693 views
How to get Chirpy to update mashed files when edits are made
I've just begun using Chirpy, and it's frigging amazing. One problem I'm having is that I'm unable to get it to update the mashed file(s) when an edit is made in one of the "sub" files.
IE: If I have ...
11
votes
4answers
3k views
Needed - Visual Studio Custom Build Actions To Minify JS and CSS
I've been using Combres in my applications to compress, combine and minify my javascript and css at run time. This works extremely well and satisfies YSlow perfectly.
Now I'm rethinking the whole ...
6
votes
5answers
615 views
Javascript - To combine or not combine, that is the question
Ok, so I know that it's obvious to combine all of a pages Javascript into a single external file for efficiency purposes, but that's not quite the question here.
Say I have Default.htm with a search ...
2
votes
1answer
304 views
Should I combine javascript into one file, or break it into a few files based on change frequency to minimize invalidating the browser cache?
I'm combining my javascript into MD5-digest-versioned files. I have a lot of js libraries that don't change very often. Then I have a set of in-house libraries that change somewhat frequently, and ...
2
votes
2answers
2k views
How to Optimize Combres Settings (Compression, Minification)
Can anybody tell me the most optimal Combres settings? I've got the following but it appears as though my CSS and my JS are not being minified.
<?xml version="1.0" encoding="utf-8" ?>
...
1
vote
2answers
742 views
Most flexible minimizer/compressor for ASP.NET MVC 2?
From your experience, what's the most flexible minimizer/compressor (JS+CSS) for ASP.NET MVC you've dealt with?
So far
mbcompress doesn't seem to be too MVC friendly
weboptimizer.codeplex.com lacks ...
