summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/node/utils/Minify.js53
-rw-r--r--src/package.json2
2 files changed, 31 insertions, 24 deletions
diff --git a/src/node/utils/Minify.js b/src/node/utils/Minify.js
index ee8f5f45..101dc97a 100644
--- a/src/node/utils/Minify.js
+++ b/src/node/utils/Minify.js
@@ -1,7 +1,7 @@
/**
- * This Module manages all /minified/* requests. It controls the
- * minification && compression of Javascript and CSS.
- */
+ * This Module manages all /minified/* requests. It controls the
+ * minification && compression of Javascript and CSS.
+ */
/*
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
@@ -151,7 +151,7 @@ function minify(req, res, next)
} else {
res.writeHead(404, {});
res.end();
- return;
+ return;
}
/* Handle static files for plugins/libraries:
@@ -371,21 +371,19 @@ function requireDefinition() {
function getFileCompressed(filename, contentType, callback) {
getFile(filename, function (error, content) {
- if (error || !content) {
+ if (error || !content || !settings.minify) {
callback(error, content);
- } else {
- if (settings.minify) {
- if (contentType == 'text/javascript') {
- try {
- content = compressJS([content]);
- } catch (error) {
- // silence
- }
- } else if (contentType == 'text/css') {
- content = compressCSS([content]);
- }
+ } else if (contentType == 'text/javascript') {
+ try {
+ content = compressJS(content);
+ } catch (error) {
+ // silence
}
callback(null, content);
+ } else if (contentType == 'text/css') {
+ compressCSS(filename, content, callback);
+ } else {
+ callback(null, content);
}
});
}
@@ -400,20 +398,29 @@ function getFile(filename, callback) {
}
}
-function compressJS(values)
+function compressJS(content)
{
- var complete = values.join("\n");
- var ast = jsp.parse(complete); // parse code and get the initial AST
+ var ast = jsp.parse(content); // parse code and get the initial AST
ast = pro.ast_mangle(ast); // get a new AST with mangled names
ast = pro.ast_squeeze(ast); // get an AST with compression optimizations
return pro.gen_code(ast); // compressed code here
}
-function compressCSS(values)
+function compressCSS(filename, content, callback)
{
- var complete = values.join("\n");
- var minimized = new CleanCSS().minify(complete).styles;
- return minimized;
+ try {
+ new CleanCSS({relativeTo: ROOT_DIR}).minify(content, function (errors, minified) {
+ if (errors) {
+ // On error, just yield the un-minified original.
+ callback(null, content);
+ } else {
+ callback(null, minified.styles);
+ }
+ });
+ } catch (error) {
+ // On error, just yield the un-minified original.
+ callback(null, content);
+ }
}
exports.minify = minify;
diff --git a/src/package.json b/src/package.json
index bdbf35c2..98e0fed0 100644
--- a/src/package.json
+++ b/src/package.json
@@ -22,7 +22,7 @@
"express-session" : "1.13.0",
"cookie-parser" : "1.3.4",
"async" : "0.9.0",
- "clean-css" : "3.4.12",
+ "clean-css" : "3.4.19",
"uglify-js" : "2.6.2",
"formidable" : "1.0.17",
"log4js" : "0.6.35",