grunt-nunjucks
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "grunt-nunjucks", | ||
"description": "Grunt task for precompiling nunjucks templates", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"homepage": "https://github.com/jlongster/nunjucks-grunt", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -22,5 +22,3 @@ /* | ||
var nameFunc = lib.isFunction(opts.name) ? opts.name : function(filepath) { | ||
return filepath; | ||
}; | ||
var nameFunc = lib.isFunction(opts.name) ? opts.name(filepath) : opts.name; | ||
@@ -27,0 +25,0 @@ this.files.forEach(function (f) { |
8787
121