optimizing template compilation

v1.18.x
psychobunny 11 years ago
parent c97d6635fc
commit 257491801d

@ -71,9 +71,17 @@ function compileTemplates(pluginTemplates) {
rimraf.sync(viewsPath); rimraf.sync(viewsPath);
mkdirp.sync(viewsPath); mkdirp.sync(viewsPath);
utils.walk(baseTemplatesPath, function(err, baseTpls) { async.parallel({
utils.walk(themeTemplatesPath, function (err, themeTpls) { baseTpls: function(next) {
var paths = {}; utils.walk(baseTemplatesPath, next);
},
themeTpls: function(next) {
utils.walk(themeTemplatesPath, next);
}
}, function(err, data) {
var baseTpls = data.baseTpls,
themeTpls = data.themeTpls,
paths = {};
if (!baseTpls || !themeTpls) { if (!baseTpls || !themeTpls) {
winston.warn('[themes] Could not find base template files at: ' + baseTemplatesPath); winston.warn('[themes] Could not find base template files at: ' + baseTemplatesPath);
@ -123,7 +131,6 @@ function compileTemplates(pluginTemplates) {
} }
}); });
}); });
});
} }
function handleErrors(err, req, res, next) { function handleErrors(err, req, res, next) {

Loading…
Cancel
Save