fixed issue where even dev mode would call the minifier for js

v1.18.x
Julian Lam 11 years ago
parent 656131be39
commit 309dcaee06

@ -266,9 +266,13 @@ var fs = require('fs'),
Meta.js.scripts = jsPaths.filter(function(path) { return path !== null });
callback(null, [
Meta.js.minFile
]);
if (process.env.NODE_ENV !== 'development') {
callback(null, [
Meta.js.minFile
]);
} else {
callback(null, scripts);
}
});
},
minify: function (callback) {

Loading…
Cancel
Save