allow to set template compiler

merge-master
javi 11 years ago committed by Román Jiménez
parent 719a961fb5
commit 10f13508aa

@ -22,7 +22,8 @@ module.exports = function(grunt) {
namespace: 'JST',
templateSettings: {},
processContent: function (src) { return src; },
separator: lf + lf
separator: lf + lf,
template: _.template
});
// assign filename transformation functions
@ -48,7 +49,7 @@ module.exports = function(grunt) {
var compiled, filename;
try {
compiled = _.template(src, false, options.templateSettings).source;
compiled = options.template(src, false, options.templateSettings).source;
} catch (e) {
grunt.log.error(e);
grunt.fail.warn('JST ' + chalk.cyan(filepath) + ' failed to compile.');

Loading…
Cancel
Save