grunt-angular-templates
Advanced tools
Comparing version 0.3.7 to 0.3.8
{ | ||
"name": "grunt-angular-templates", | ||
"description": "Grunt build task to concatenate & register your AngularJS templates in the $templateCache", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"homepage": "https://github.com/ericclemmons/grunt-angular-templates", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -138,2 +138,6 @@ # grunt-angular-templates [![Build Status](https://travis-ci.org/ericclemmons/grunt-angular-templates.png?branch=master)](https://travis-ci.org/ericclemmons/grunt-angular-templates) | ||
### v0.3.8 | ||
- Fix error that occurs when adding 0-length files, thanks to @robertklep ([#27](https://github.com/ericclemmons/grunt-angular-templates/pull/27)) | ||
### v0.3.7 | ||
@@ -140,0 +144,0 @@ |
@@ -40,3 +40,3 @@ /* | ||
id: id, | ||
content: content, | ||
content: content.length ? content : '""', | ||
noConflict: noConflict | ||
@@ -43,0 +43,0 @@ } |
19824
19
221