Tagged Questions
1
vote
2answers
587 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 ...
15
votes
2answers
5k views
How to concatenate and minify multiple CSS and JavaScript files with Grunt.js
Note: This question is only relevant for Grunt 0.3.x and has been left for reference. For help with the latest Grunt 0.4.x please see my answer below this question.
I'm currently trying to use ...
0
votes
1answer
108 views
YUI compressor regex confusion
I'm using YUI compressor to minify and combined some JS files. I can minify individual files no problem using this:
TimPeterson$ -jar yuicompressor-2.4.7.jar /assets/js/input1.js -o ...
3
votes
1answer
390 views
Tools for JS and CSS file concatenating
I recently started working with a large code base with many (15-20) js requests per page. I'm tasked with optimization and performance improvement of these sites.
I've been using tools like Google's ...
1
vote
2answers
273 views
Htaccess Concatenarion
I use this code to concatenare CSS and Javascript:
<FilesMatch "\.combined\.js$">
Options +Includes
AddOutputFilterByType INCLUDES application/javascript application/json
SetOutputFilter ...
8
votes
2answers
944 views
Concatenating CSS files in a specific order
I have a series of CSS files that I am concatenating and minfying (using the YUI Compressor) with an Ant build script. The CSS files are:
Reset.css
Formalize.css
Typography.css
Site.css
There are ...
3
votes
2answers
2k views
Are there any static JS concatenation/minification modules for Express.js?
I liked using the Stylus for compressing my CSS stylesheets.
Are there any modules, that, similarly to Stylus, can automatically compress and minify static JS files? I am looking for something to use ...
1
vote
2answers
130 views
Css ignoring everything after the first class
I'm using this guide to create a HTTPHandler that combines script and css files to deliver them as one request each.
Basically it reads a bunch of .css files into a byte array and then ...
