grunt-jasper
Advanced tools
Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "grunt-jasper", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Grunt task to build and package jasper application", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jasperjs/grunt-jasper", |
@@ -198,2 +198,6 @@ /* | ||
if(def.type.toUpperCase() === 'TEMPLATE'){ | ||
if(!def.templateUrl){ | ||
grunt.log.error('TemplateFile not defined in ' + def.__path); | ||
return; | ||
} | ||
var htmlContent = grunt.file.read(def.templateUrl); | ||
@@ -200,0 +204,0 @@ def.content = utils.minifyHtml(htmlContent, { |
54457
1222